博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java连接MySql
阅读量:5889 次
发布时间:2019-06-19

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

  1.

  现在工程(不是Src)上右键--Build Path--Add External Archives,选择驱动下的那个jar包,这是release版本,bin目录下的是debug版本。

  示例在docs下的connector-j.html,里面有例子(其中的test是数据库名,换位自己的)。

1 import java.sql.Connection; 2 import java.sql.DriverManager; 3 import java.sql.SQLException; 4 Connection conn = null; 5 ... 6 try { 7     conn = 8        DriverManager.getConnection("jdbc:mysql://localhost/test?" + 9                                    "user=monty&password=greatsqldb");10     // Do something with the Connection11    ...12 } catch (SQLException ex) {13     // handle any errors14     System.out.println("SQLException: " + ex.getMessage());15     System.out.println("SQLState: " + ex.getSQLState());16     System.out.println("VendorError: " + ex.getErrorCode());17 }

   2.可以直接在MySql控制台下创建数据库,也可以在通过执行 "\. 绝对路径名"。

  “--”是注释符。

View Code
1 import java.sql.Connection; 2 import java.sql.DriverManager; 3 import java.sql.ResultSet; 4 import java.sql.SQLException; 5 import java.sql.Statement; 6  7 public class mysql { 8  9     /**10      * @param args11      */12     public static void main(String[] args) {
// 多个try合并到一块,然后使用source --- format13 // TODO Auto-generated method stub14 //若是用到finally则需要把声明放在try外边15 Connection conn = null;16 Statement stmt = null;17 ResultSet rs = null;18 19 try {20 Class.forName("com.mysql.jdbc.Driver");// 后面若是加上".newInstance"则还需要加上几个抛出异常21 conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?"22 + "user=root&password=root");23 /*24 * java.sql.Statement; 不是com.mysql这个包; 二者不可以同时存在25 */26 stmt = conn.createStatement();27 rs = stmt.executeQuery("select * from info");28 29 while (rs.next()) {30 System.out.println(rs.getString("name"));31 32 }33 34 // Do something with the Connection35 } catch (ClassNotFoundException ex) {36 // handle any errors37 ex.printStackTrace();38 39 } catch (SQLException ex) {40 // TODO Auto-generated catch block41 System.out.println("SQLException: " + ex.getMessage());42 System.out.println("SQLState: " + ex.getSQLState());43 System.out.println("VendorError: " + ex.getErrorCode());44 } finally {45 try {46 if(null!= rs) {47 rs.close();48 rs = null;49 }50 51 if(null!= stmt) {52 stmt.close();53 stmt = null;54 }55 56 if(null!= conn) {57 conn.close();58 conn = null;59 }60 61 } catch(SQLException e) {62 e.printStackTrace();63 }64 }65 66 }67 68 }

  3.

 

转载地址:http://cvysx.baihongyu.com/

你可能感兴趣的文章
学习安卓开发[1] - 程序结构、Activity生命周期及页面通信
查看>>
安装和卸载软件包
查看>>
socket_ftp下载实例_完善功能
查看>>
linux源码包与RPM包的区别
查看>>
部署 k8s Cluster(下)- 每天5分钟玩转 Docker 容器技术(119)
查看>>
40条常见的移动端Web页面问题解决方案
查看>>
bash-shell-scripts高级脚本配置IP地址
查看>>
week04_python函数、参数及参数结构
查看>>
centos6.4_kvm 双网卡(adsl+局域网)配置
查看>>
电力行业IT运维管理解决方案
查看>>
Protostar format4
查看>>
SpringDataJpa的简单入门使用
查看>>
解决Wget下载时的乱码问题
查看>>
import android.support.v7.app.ActionBarActivity; 报
查看>>
ImageView显示超大图片
查看>>
bash的工作特性之命令执行返回值和命令展开的内容及练习示例
查看>>
linux 命令 —— gzip
查看>>
IDEA
查看>>
SecureCRT中用vbs脚本批量执行unix命令
查看>>
.NET中的泛型和Java泛型中的类型擦除
查看>>