博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jdbc 驱动设置
阅读量:5278 次
发布时间:2019-06-14

本文共 1664 字,大约阅读时间需要 5 分钟。

/*** JDBC* 2017-5-10* HZ for test**/import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;/** import java.sql.*; **/public class JDBC_Test{    static Connection conn;    static Statement st;    public static void main(String[] args)    {        insert();    }    public static void insert()    {        conn=JDBC_Test.getConnection();        try        {            String sql="Insert INTO tb_user(username,sex,email)"+"VALUES('Tom','male','ahdgjs')";            st=(Statement)conn.createStatement();            int count=st.executeUpdate(sql);            System.out.println("insert---"+count+"record");            conn.close();        }        catch(SQLException e)        {            System.out.println("insert  failed"+e.getMessage());        }    }    public static Connection getConnection()    {        Connection con;        try        {            System.out.println("heng!");            Class.forName("com.mysql.jdbc.Driver");            System.out.println("heng!");            con=DriverManager.getConnection("jdbc:mysql://localhost:3306/db_database04","root","123456");            System.out.println("heng!");            return con;        }        catch(Exception e)        {            System.out.println("connection failed    "+e.getMessage());        }        return null;    }}

【代码参考于大神】

连接数据库的部分。我写了三行测试:

因为卡在这里。根据提示信息,是驱动加载出问题。因为我根本没有download驱动。

所以download驱动。贴上链接:

链接: http://pan.baidu.com/s/1slDDW7r 密码: mbe2

下载后,建一个文件夹存放。

 

设置环境变量。classpath:

如果这些都做了。还是不行。重启电脑。

在连接之前,需要先启动mysql。

耶!成功鸟~

 

另:需要先启动数据库服务再运行程序。

转载于:https://www.cnblogs.com/zhenzhenhuang/p/6836355.html

你可能感兴趣的文章
server farm
查看>>
clone github报Permission denied (publickey) 解决方案
查看>>
(转载)利用C#读取excel
查看>>
利用Zabbix监控Nginx
查看>>
jQuery测试
查看>>
[UWP]如何使用代码创建DataTemplate(或者ControlTemplate)
查看>>
Spring in Action --- 第三章 高级装配
查看>>
项目管理小记
查看>>
python 循环
查看>>
搭建一个入门springboot工程(Spring Initializr创建方式)
查看>>
初识Spring Boot框架(二)之DIY一个Spring Boot的自动配置
查看>>
网络知识
查看>>
Linux 压缩解压
查看>>
[leetcode] Remove Duplicates from Sorted Array II
查看>>
MVC 读取指定视图HTML 代码结构
查看>>
JAVA 中 getMethod()和invoke()方法应用
查看>>
Linux内存调试工具初探-MEMWATCH(转)
查看>>
《软件测试》--第四次博客作业
查看>>
git基本使用
查看>>
开篇寄语
查看>>