change directory

This commit is contained in:
haerong22
2022-08-27 01:40:43 +09:00
parent e7da12d713
commit 79efea26d1
60 changed files with 1081 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package myObject;
public class JavaMySQLDriver implements DBConnect{
@Override
public void getConnection(String url, String user, String password) {
System.out.println("MySQL DB에 접속합니다.");
}
}