当前位置: 首页 > 图文教程 > 数据库 > MYSQL > 浅谈如何应用JDBC连接数据库MySQL

MYSQL
教你快速掌握如何向MySQL的表中录入数据
linux高负载下彻底优化mysql数据库
编写高质量高性能的MySQL语法
MySQL中与NULL值有关的疑难问题
MySQL数据库搜索中的大小写敏感性
MYSQL:解决主机host_name被屏蔽的现象
MaxDB和MySQL之间的协同性
掌握MaxDB和MySQL之间的特性差异
MySQL数据库所支持的操作系统
Windows XP下PHP+MySQL环境搭建
mysqld_multi单机环境下启动多个mysql
远程使用MySQL GUI工具
数据从MySQL迁移到Oracle的注意事项
MySQL存储程序、函数以及复制的相关问题
MySQL记录未知错误的发生的方法
MySQL数据库复位根用户的密码
MySQL出现1067错误如何解决?
ASP动态网站制作中使用MYSQL的分析
MySQL数据库字符集的出错故障
php教程:mysql数据库操作的DB类

MYSQL 中的 浅谈如何应用JDBC连接数据库MySQL


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-30   浏览: 88 ::
收藏到网摘: n/a

最近在学习数据库开发的一些实例,这里浅谈一下用JDBC连接数据库MySQL(当然也可以连接SQL Sever或Oracle了,只是我更喜欢开源软件,同时也更简单)。

首先正确安装好MySQL,建立好数据库studentinfo

mysql>create database studentinfo;

然后编写java代码,ConnectToMySQL.java

import java.sql.*;public class ConnectToMySQL { public static Connection getConnection() throws SQLException , java.lang.ClassNotFoundException{ String url = "jdbc:mysql://localhost:3306/studentinfo"; Class.forName("com.mysql.jdbc.Driver"); String userName = "root"; String password = ""; Connection con = DriverManager.getConnection(url,userName,password); return con; } public static void main(String[] args) { try{ Connection con = getConnection(); Statement sql = con.createStatement(); sql.execute("drop table if exists student"); sql.execute("create table student(id int not null auto_increment,name varchar(20) not null default 'name',math int not null default 60,primary key(id));"); sql.execute("insert student values(1,'AAA','99')"); sql.execute("insert student values(2,'BBB','77')"); sql.execute("insert student values(3,'CCC','65')"); String query = "select * from student"; ResultSet result = sql.executeQuery(query); System.out.println("Student表数据如下:"); System.out.println("---------------------------------"); System.out.println("学号"+" "+"姓名"+" "+"数学成绩"); System.out.println("---------------------------------"); int number; String name; String math; while(result.next()){ number = result.getInt("id"); name = result.getString("name"); math = result.getString("math"); System.out.println(number + " " + name + " " + math); } sql.close(); con.close(); }catch(java.lang.ClassNotFoundException e){ System.err.println("ClassNotFoundException:" + e.getMessage()); }catch(SQLException ex){ System.err.println("SQLException:" + ex.getMessage()); } }}

轻松搞定,一下为输出结果:

要注意的是使用MySQL数据库,需要用到对应的JDBC驱动程序mysql-connector-java-5.0.3,可以到zySQL的官方网站上下载(http://www.mysql.org)