携程网数据建表SWAP.PDF

时间:2012-07-23 14:31:44
【文件属性】:

文件名称:携程网数据建表SWAP.PDF

文件大小:1.8MB

文件格式:PDF

更新时间:2012-07-23 14:31:44

数据库

public class DeptServiceImpl implements DeptService { public void insert(Dept dept) { Statement st=null; //用以执行sql操作 Connection con=ConnectionFactory.getConnection(); try{ con.setAutoCommit(false); st=con.createStatement(); String sql="insert into dept(name) values('gaoyajun')"; int i=st.executeUpdate(sql); con.commit(); System.out.println(i); }catch(Exception e){


网友评论