jdbc连接数据库的代码问题jdbc连接mysql数据库

jdbc连接数据库的代码问题jdbc连接mysql数据库,第1张

用这个类吧.好的话,给我加加分.

import java.sql.*

/**

* @功能: 一个JDBC的本地化API连接类,封装了数据 *** 作方法,只用传一个SQL语句即可

* @作者: 李开欢

* @日期: 2007/

*/

public class ConnectionDemo {

/*

* 这里可以将常量全部放入另一个类中,以方便修改

*/

private static Connection conn

private static Statement ps

private static ResultSet rs

private static final String DRIVER = "com.microsoft.jdbc.sqlserver.SQLServerDriver"

private static final String URL = "jdbc:microsoft:sqlserver://localhost:1433DatabaseName=mydb"

private static final String USER ="sa"

private static final String PASS = "sa"

public ConnectionDemo() {

// TODO Auto-generated constructor stub

ConnectionDemo.getConnection()

}

public static Connection getConnection(){

System.out.println("连接中...")

try {

Class.forName(ConnectionDemo.DRIVER)

conn = DriverManager.getConnection(ConnectionDemo.URL, ConnectionDemo.USER, ConnectionDemo.PASS)

System.out.println("成功连接")

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

return conn

}

public static Statement getStatement(String sql){

System.out.println("执行SQL语句中...")

try {

ps = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE)

if(sql.substring(0, 6).equals("select")){

rs = ps.executeQuery(sql)

System.out.println("执行完查询 *** 作,结果已返回ResultSet集合")

}else if(sql.substring(0, 6).equals("delete")){

ps.executeUpdate(sql)

System.out.println("已执行完毕删除 *** 作")

}else if(sql.substring(0, 6).equals("insert")){

ps.executeUpdate(sql)

System.out.println("已执行完毕增加 *** 作")

}else{

ps.executeUpdate(sql)

System.out.println("已执行完毕更新 *** 作")

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

return ps

}

public static ResultSet getResultSet(){

System.out.println("查询结果为:")

return rs

}

public static void closeConnection(){

System.out.println("关闭连接中...")

try {

if (rs != null) {

rs.close()

System.out.println("已关闭ResultSet")

}

if (ps != null) {

ps.close()

System.out.println("已关闭Statement")

}

if (conn != null) {

conn.close()

System.out.println("已关闭Connection")

}

} catch (Exception e) {

// TODO: handle exception

}

}

public static void main(String[] args) {

// TODO Auto-generated method stub

ConnectionDemo.getConnection()

String sql = "delete from type where id = 1"

ConnectionDemo.getStatement(sql)

String sql2 = "insert into type values(1,'教学设备')"

ConnectionDemo.getStatement(sql2)

String sql1 = "select * from type"

ConnectionDemo.getStatement(sql1)

ResultSet rs = ConnectionDemo.getResultSet()

System.out.println("编号 "+"类型")

try {

while(rs.next()){

System.out.print(" "+rs.getInt(1)+" ")

System.out.println(rs.getString(2))

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

ConnectionDemo.closeConnection()

}

}

java中使用jdbc连接sql server数据库步骤

1.JDBC连接SQL Server的驱动安装 ,前两个是属于数据库软件,正常安装即可(注意数据库登陆不要使用windows验证)

将JDBC解压缩到任意位置,比如解压到C盘program files下面,并在安装目录里找到sqljdbc.jar文件,得到其路径开始配置环境变量

在环境变量classpath 后面追加 C:\Program Files\Microsoft SQL Server2005 JDBC Driver\sqljdbc_1.2\enu\sqljdbc.jar

设置SQLEXPRESS服务器:

a.打开SQL Server Configuration Manager ->SQLEXPRESS的协议 ->TCP/IP

b.右键单击启动TCP/IP

c.双击进入属性,把IP地址中的IP all中的TCP端口设置为1433

d.重新启动SQL Server 2005服务中的SQLEXPRESS服务器

e.关闭SQL Server Configuration Manager

打开 SQL Server Management Studio,连接SQLEXPRESS服务器, 新建数据库,起名字为sample

打开Eclipse

a.新建工程->Java ->Java project,起名为Test

b.选择eclipse->窗口->首选项->Java->installed JRE 编辑已经安装好的jdk,查找目录添加sqljdbc.jar

c.右键单击目录窗口中的Test, 选择Build Path ->Configure Build Path..., 添加扩展jar文件,即把sqljdbc.jar添加到其中

编写Java代码来测试JDBC连接SQL Server数据库

import java.sql.*

public class Test {

public static void main(String[] srg) {

//加载JDBC驱动

String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"

//连接服务器和数据库sample

String dbURL = "jdbc:sqlserver://localhost:1433DatabaseName=sample"

String userName = "sa"//默认用户名

String userPwd = "123456"//密码

Connection dbConn

try {

Class.forName(driverName)

dbConn = DriverManager.getConnection(dbURL, userName, userPwd)

System.out.println("Connection Successful!")//如果连接成功 控制台输出

} catch (Exception e) {

e.printStackTrace()

}

}

}

执行以后就可以连接到sample数据库了。

步骤分为3部:

1.通过sql server 配置管理器配置1433端口

2.将sqljdbc41.jar类库添加到对应的工程中

3.在java程序中连接数据库

步骤1:打开sql server 配置管理器,点击TCP/IP右键,选择启用。将禁用的TCP/IP协议打开。

然后重启sql server(mssqlserver)服务,使得tcp/ip协议生效。

步骤2:到microsoft官网下载sqljdbc41.jar类库。http://www.microsoft.com/zh-CN/download/details.aspx?id=11774

将下载的压缩包解压,找到sqljdbc41.jar类库即可。

然后进入eclipse界面,找到的当前工程文件,点击右键,选中properties->Libraries->add external jars->找到我们刚刚下载到的sqljdbc41.jar类库,添加即可。

步骤3:

import java.sql.*

public class test3 {

public static void main(String[] args) {

// TODO Auto-generated method stub

PreparedStatement ps=null //(这里也可以使用statement,视情况而定)

Connection ct=null

ResultSet rs=null

try {

//1.加载驱动

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver")

String url="jdbc:sqlserver://localhost:1433databaseName=test1"

String user="sa"//sa超级管理员

String password="654321"//密码

//2.连接

ct=DriverManager.getConnection( url,user,password)

//3.创建发送端

pstmt = conn.prepareStatement("INSERT INTO staff(name, age) VALUES (?, ?)")

//通过PreparedStatement对象里的set方法去设置插入的具体数值

pstmt.setString(1, newen)

pstmt.setInt(2, 25)

pstmt.executeUpdate()

//插入成功提示

System.out.println("成功插入一条数据记录!")

}

} catch (Exception e) {

// TODO: handle exception

e.printStackTrace()

}finally{

//关闭资源

try {

if(rs!=null){

rs.close()

}

if(ps!=null){

ps.close()

}

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

}

}

jdbc连接数据库OK!!!


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9887389.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存