爱心区 公益下载 公益文章 人在旅途 小博士乐园

>>首页 -> 公益文章 -> 技术文栏 -> java文栏 -> java基本文章 -> java与mysql相连一例



java与mysql相连一例


作者javasqllike 来源lovesqljava 加入时间:2005-9-20
摘要:
java与mysql相连一例
在正确安装mysql jdbc 有前提下:





impor...

转载:转载请保留本信息,本文来自
http://www.51dibs.com/info/24003.htm

java与mysql相连一例
在正确安装mysql jdbc 有前提下:





import java.sql.*;
import java.lang.*;
public class ch1
{
public static void main(String args[ ])
{
String driver ="org.gjt.mm.mysql.Driver";
String url ="jdbc:mysql://127.0.0.1:3306/jsptest";
String user ="hukn";
String password="hukn";
try
{
Class.forName(driver);
}
catch(Exception E)
{
System.out.print("无法加载驱动:"+driver);
}
try
{
Connection con=DriverManager.getConnection(url,user,password);
if(!con.isClosed())
System.out.println("打开数据库成功");
Statement smt=con.createStatement();
smt.executeUpdate("insert into test(name,adress) values(中国,成都)");
smt.close();
con.close();
}
catch(SQLException SE)
{
System.out.print("打开数据库失败");
}
}
}



相关文章

相关软件

客户服务中心信箱:[email protected]