jdbc学习日志

java mysql jdbc的使用方法

1,加载mysql的驱动  //当然这个之前需要在工程中加入mysql&jdbc的jar包

class.forName(com.mysql.jdbc.Driver); 

2,取得jdbc的链接


url = jdbc:mysql://localhost:3306/tableName;

username = db登陆名;

password = db密码;

Connection conn = DrvierManager.getConnection(url, username, password);

3,创建Statement对象

Statement stmt = conn.createStatement();

4,定义sql,并执行

String sql = “select * from table”;

int result = stmt.executeUpdate(sql);

//result !=-1时说明sql执行成功了。

5,执行完后,记得需要关闭链接

conn.close();




你可能感兴趣的:(jdbc)