资源简介
《MySQL入门很简单》随书光盘的源代码 欢迎下载交流
代码片段和文件信息
package db;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.DriverManager;
import java.io.*;
public class DB {
private Connection conn=null;
private Statement stat=null;
public ResultSet rs=null;
public void connectMySQL()
{
String url=“jdbc:mysql://localhost:3306/drivingschool“;
String user=“root“;
String psd=“root“;
try {
Class.forName(“com.mysql.jdbc.Driver“);
conn = DriverManager.getConnection(url user psd);
stat = conn.createStatement();
} catch (Exception e) {
e.printStackTrace();
}
}
public ResultSet query(String sql) throws SQLException
{
if(sql==null||sql.equals(““))
{
return null;
}
rs = stat.executeQuery(sql);
return rs;
}
public int update(String sql) throws SQLException
{
int i;
if(sql==null||sql.equals(““))
{
return 0;
}
i=stat.executeUpdate(sql);
return i;
}
public ResultSet executeSQL(String sql) throws SQLException{
boolean t;
if(sql==null||sql.equals(““))
{
return null;
}
t=stat.execute(sql);
if(t){
rs = stat.getResultSet();
return rs;
}
else{
return null;
}
}
public void closeDB() throws SQLException
{
if(rs!=null)
{
rs.close();
rs=null;
}
if(stat!=null)
{
stat.close();
stat=null;
}
if(conn!=null)
{
conn.close();
conn=null;
}
}
/*
public static void main(String arg[]) throws SQLExceptionIOException InstantiationException IllegalAccessException ClassNotFoundException{
String sql=“select * from user“;
DB d=new DB();
d.connectMySQL();
ResultSet rs=d.query(sql);
if(rs!=null){
System.out.println(“success“);
while(rs.next()){
String i=rs.getString(“username“);
System.out.println(i);
String j=rs.getString(“password“);
System.out.println(j);
}
}
else{
System.out.println(“Fail“);
}
d.closeDB();
}
*/
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-05-19 23:31 本书源程序\
目录 0 2011-05-19 23:31 本书源程序\05\
目录 0 2011-05-19 23:31 本书源程序\05\5.4\
文件 243 2009-12-27 20:28 本书源程序\05\5.4\本章实例源代码.txt
目录 0 2011-05-19 23:31 本书源程序\05\5.5\
文件 565 2009-12-27 20:32 本书源程序\05\5.5\上机实践源代码.txt
目录 0 2011-05-19 23:31 本书源程序\06\
目录 0 2011-05-19 23:31 本书源程序\06\6.5\
文件 1403 2009-12-27 20:42 本书源程序\06\6.5\本章实例源代码.txt
目录 0 2011-05-19 23:31 本书源程序\06\6.6\
文件 1936 2009-12-27 20:46 本书源程序\06\6.6\上机实践源代码.txt
目录 0 2011-05-19 23:31 本书源程序\07\
目录 0 2011-05-19 23:31 本书源程序\07\7.4\
文件 1647 2009-12-27 20:56 本书源程序\07\7.4\本章实例源代码.txt
目录 0 2011-05-19 23:31 本书源程序\07\7.5\
文件 953 2009-12-27 20:59 本书源程序\07\7.5\上机实践源代码.txt
目录 0 2011-05-19 23:31 本书源程序\08\
目录 0 2011-05-19 23:31 本书源程序\08\8.7\
文件 1325 2009-12-28 10:27 本书源程序\08\8.7\本章实例源代码.txt
目录 0 2011-05-19 23:31 本书源程序\08\8.8\
文件 1195 2009-12-28 10:29 本书源程序\08\8.8\上机实践源代码.txt
目录 0 2011-05-19 23:31 本书源程序\09\
目录 0 2011-05-19 23:31 本书源程序\09\9.5\
文件 1669 2009-12-28 10:34 本书源程序\09\9.5\本章实例源代码.txt
目录 0 2011-05-19 23:31 本书源程序\09\9.6\
文件 1046 2009-12-28 10:36 本书源程序\09\9.6\上机实践源代码.txt
目录 0 2011-05-19 23:31 本书源程序\10\
目录 0 2011-05-19 23:31 本书源程序\10\10.1-10.8\
文件 486 2009-12-28 20:34 本书源程序\10\10.1-10.8\computer_stu表.txt
文件 385 2009-12-28 20:23 本书源程序\10\10.1-10.8\department表.txt
文件 453 2009-12-28 19:44 本书源程序\10\10.1-10.8\employee表.txt
............此处省略120个文件信息
相关资源
- Microsoft SQL Server 2008技术内幕:T-SQL查
- 餐饮管理系统(源代码+报告)
- 健康体检中心网站源代码
- QT用户登录界面源代码
- SQL Server求生秘籍(SQL Server故障排除圣
- 一套源代码完整的开放式Delphi机房管
- 网上商城源代码自带数据库
- 图书管理系统access数据库源代码
- 《Oracle课程设计案例精编》 源代码
- 固定资产管理系统源代码
- DELPHI人力资源库程序源代码
- 商场管理系统源代码带建表sql
- 中小型酒店管理系统的设计与实现源
- 《SQL Server 2014数据库设计开发及应用
- Visual Basic.NET精彩编程百例 李强 源代
- Qt写的学生公寓管理系统源代码
- 企业人员管理系统.zip
- 基于安卓的旅游系统源代码一套
- web课程设计-网页阅读器源代码+数据库
- 医疗管理系统
- 基于SSM的简单的增删改查源代码+SQL新
- 淘淘商城后台manager源代码含课后作业
- [SQL Server实用教程第4版SQL Server 2012版
- 干洗店管理系统.zip
- MySQL实用教程第2版源代码
- 排队叫号机源代码
- 系统登陆注册源代码
- [程序源代码]SQL Server 2008数据库项目案
- 数据库 药品管理系统+源代码
- 基于SSH的网上招聘求职系统的源代码
评论
共有 条评论