既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Go语言开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
import com.mysql.jdbc.Driver;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class TestJDBCConnection {
public static void main(String[] args) {
//第一步:注册驱动
Statement statement=null;
Connection connection=null;
try {
DriverManager.registerDriver(new com.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) {
![img](https://img-blog.csdnimg.cn/img_convert/2404c0ed2832bcf839805bdeb1e3ebe8.png)
![img](https://img-blog.csdnimg.cn/img_convert/0dbf1ec803e08cef8dbdb401d1135780.png)
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以添加戳这里获取](https://bbs.csdn.net/topics/618658159)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**