웹프로그래밍/jsp

jsp - jdbc insert문 이용하기

zelkova 2011. 3. 23. 17:31
<목차로 돌아가기>

 Class.forName("com.mysql.jdbc.Driver");

Connection conn = null;
Statement stmt = null;
ResultSet rs = null;

try{
  String jdbcDriver= "jdbc:mysql://localhost:3306/testdb?useUnicode=true&characterEncoding=euckr";
  String dbuser = "testuser";
  String dbpass = "testpw";

int no = 1;
String name="홍길동";
String testid="test1";
String testpw="1234";

  String query="insert into member(no, testid, testpw, name) values('"+no+"','"+testid+"','"+testpw+"','"+name+"')" ;

  conn = DriverManager.getConnection(jdbcDriver, dbuser, dbpass);
  stmt = conn.createStatement();
  stmt.executeUpdate(query);
}
finally
{
 if (stmt != null) try {stmt.close();} catch(SQLException ex){}
 if (conn != null) try {conn.close();} catch(SQLException ex){}
}
%>

이제 다했다!!
mysql에서 테이블에 잘 들어갔는지 확인해 보자.


반응형

'웹프로그래밍 > jsp' 카테고리의 다른 글

jsp - 레이아웃 템플릿  (0) 2011.03.25
jsp - jdbc update문 이용하기  (0) 2011.03.23
jsp -jdbc select문 이용  (0) 2011.03.23
jsp - jdbc 연결시키기  (0) 2011.03.22
jsp - 회원가입후 전송 예제 입니다.  (0) 2011.03.22