importcom.mysql.jdbc.Driver;importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.SQLException;importjava.sql.Statement;publicclassTestJDBCConnection{publicstaticvoidmain(String[] args){//第一步:注册驱动Statement statement=null;Connection connection=null;try{DriverManager.registerDriver(newcom.mysql.jdbc.Driver());//第二步:创建连接String url="jdbc:mysql://127.0.0.1:3306/mobilemallsystem";String user="root";String password="123456";
connection=DriverManager.getConnection(url,user, password);// System.out.println("数据库连接对象"+connection);//第三步:获取数据库操作对象(SQL语句执行对象)
statement= connection.createStatement();//第四步:执行SQL语句String sql="insert into usermessage(uname,upassword) values('666','666')";
statement.executeUpdate(sql);//第五步:处理查询结果集//第六步:释放资源}catch(SQLException throwables){
throwables.printStackTrace();}finally{if(statement!=null){try{
statement.close();}catch(SQLException throwables){
throwables.printStackTrace();}}if(connection!=null){try{
connection.close();}catch(SQLException throwables){
throwables.printStackTrace();}}}}}
你的点赞和关注,是我继续坚持下去的动力,如果可以请一键三连,谢谢!
个人知识水平有限,如果博客中有误,望指正。
如果欲交流学习,请私信我,我一定会在看到消息时及时回复你。
本文转载自: https://blog.csdn.net/qq_45858803/article/details/122607829
版权归原作者 #眼镜& 所有, 如有侵权,请联系我们删除。
版权归原作者 #眼镜& 所有, 如有侵权,请联系我们删除。