java mysql实例_java 访问mysql 实例

前提条件:

1.安装eclipse,mysql.java jdk

2.安装mysql connect J  (我安装的版本是mysql connect J 5.1.39)

3.配置java环境变量

4.使用mysql 创建schema,然后创建表,插入数据。(我创建的表:table1,字段:id,name)

使用eclipse编写代码:

1. 新建包

2. 新建类(勾选main选项,以便程序能执行)

3. 完整的代码如下:

package com.ibm.reskill.java.jdbc_sample;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class JdbcSample {

public static void main(String[] args) {

// TODO Auto-generated method stub

Connection conn=null;

//connect to the database

try

{

conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/new_schema?useSSL=false","root","wen_201611!");

if (conn!=null) System.out.println("connect success");

else

System.out.println("connect failed");

} catch (SQLException ex)

{

System.out.println("SQLException: xxx "+ex.getMessage());

System.out.println("SQLState: "+ex.getSQLState());

System.out.println("VendorError: "+ex.getErrorCode());

}

Statement stmt=null;

ResultSet rs=null;

try {

stmt=conn.createStatement();

rs=stmt.executeQuery("SELECT * FROM table1");

while (rs.next())

{

System.out.println("The value of row "+rs.getRow()+" col 1 is "+rs.getInt(1));

System.out.println("The value of row "+rs.getRow()+" col 2 is "+rs.getString(2));

}

} catch (SQLException ex)

{

System.out.println("SQLException: "+ex.getMessage());

System.out.println("SQLState: "+ex.getSQLState());

System.out.println("VendorError: "+ex.getErrorCode());

}

finally

{

if (rs!=null)

{

try{

rs.close();

System.out.println("\nrs destoryed");

} catch (SQLException sqlEx) {}

rs=null;

}

if (stmt!=null)

{

try{

stmt.close();

System.out.println("stmt destoryed");

} catch (SQLException sqlEx){}

stmt=null;

}

}

}

}

注意事项:

如果出现找不到类的异常,尝试修改当前项目的java build path属性,把jdbc驱动文件加载进来。

bd4e0470ccba1239645ae4cb0cc0215e.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值