티스토리 뷰
반응형
11년 8월 기준.
package talktab.db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class dbtest {
public static boolean dbtest(){
Connection conn;
Statement stmt;
try{
Class.forName("com.mysql.jdbc.Driver");
}catch(ClassNotFoundException e){
System.err.print("ClassNotFoundException: ");
return false;
}
try{
String url="jdbc:mysql://192.168.0.100:3306/talktab";
String id="mysql";
String pass="mysql";
conn = DriverManager.getConnection(url,id,pass);
stmt=conn.createStatement();
stmt.close();
conn.close();
System.out.println("connect");
}catch(SQLException e){
System.out.println("SQLException: "+e.getMessage());
return false;
}
return true;
}
}
반응형
'Knowledge' 카테고리의 다른 글
Tomcat(톰캣) user add(사용자 추가) (0) | 2024.01.14 |
---|---|
Linux(리눅스) Mail(메일) 관련 (0) | 2024.01.14 |
C#(씨샾) WebBrower(웹브라우저) (0) | 2024.01.07 |
BlazeDS(블레이즈디에스) LCDS(LiveCycle Data Services) 비교 (0) | 2024.01.07 |
Symfony(심포니) Framework(프레임워크) 관련 (0) | 2024.01.07 |
댓글