|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
最初被命名为Oak,目标设定在家用电器等小型系统的编程语言,来解决诸如电视机、电话、闹钟、烤面包机等家用电器的控制和通讯问题。js|程序|数据|数据库|数据库毗连packageonline;
importjava.sql.*;
publicclassDBConn{
privatestaticStringrootpath="web公布路径";
privateStringsample="sample";
privateConnectioncon=null;
privateStatementstmt=null;
ResultSetrs=null;
/***************************************************************/
privatestaticfinalStringDRIVE="sun.jdbc.odbc.JdbcOdbcDriver";
//临时利用jdbc-odbc毗连//"com.microsoft.jdbc.sqlserver.SQLServerDriver";
privatestaticfinalStringUSERNAME="sa";
privatestaticfinalStringPASSWORD="123aaa";
privatestaticfinalStringHOST="http:127.0.0.1:8080/renshi";
/*************************************************************/
//临时利用jdbc-odbc数据源
privatestaticfinalStringCONNECTION_STRING="jdbc:odbc:renshi";
//"jdbc:microsoft:sqlserver://localhost;1433;";
publicstaticStringgetRootPath(){
returnrootpath;
}
publicDBConn(){//加载驱动
try{
Class.forName(DRIVE);
}
catch(ClassNotFoundExceptione){
System.err.println("DBConn():"+e.toString());
}
catch(Exceptione){
System.err.println("DBConn():"+e.toString());
}
}
publicConnectiongetConnection(){//失掉毗连
try{
StringstrUrl=CONNECTION_STRING;
/***********周五晚修改****************************************/
//+"DatebaseName=renshi,"+USERNAME+","+PASSWORD;
con=DriverManager.getConnection(strUrl,this.USERNAME,this.PASSWORD);
}
catch(Exceptione){
con=null;
}
returncon;
}
publicvoiddropConnection(){//封闭毗连
try{
closeStmt();
con.close();
}
catch(Exceptionignored){
}
finally{
con=null;
}
}
publicResultSetexecuteQuery(Stringsql){//实行sql查询
ResultSetrs=null;
try{
con=getConnection();
stmt=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_READ_ONLY);
rs=stmt.executeQuery(sql);
}
catch(SQLExceptionex){
System.err.println("DBConn.executeQuery():"+ex.getMessage());
}
returnrs;
}
publicintexecuteUpdate(Stringsql){//实行sql更新语句
inti=0;
stmt=null;
rs=null;
try{
con=getConnection();
stmt=con.createStatement();
i=stmt.executeUpdate(sql);
stmt.close();
con.close();
}
catch(SQLExceptionex){
System.err.println("DBConn:executeUpdate(0:"+ex.getMessage());
}
returni;
}
publicvoidexecute(Stringsql){//实行sql语句
stmt=null;
rs=null;
try{
con=getConnection();
stmt=con.createStatement();
stmt.execute(sql);
stmt.close();
con.close();
}
catch(SQLExceptionex){
System.err.println("DBConn:excute():"+ex.getMessage());
}
}
publicvoidcloseConn(){//封闭sql毗连
try{
stmt.close();
}
catch(SQLExceptione){
e.printStackTrace();
}
}
publicvoidcloseStmt(){//封闭sql毗连
try{
con.close();
}
catch(SQLExceptione){
e.printStackTrace();
}
}
/**
*main
*/
publicstaticvoidmain(String[]args)throwsSQLException{
DBConnone=newDBConn();
ResultSetrs=one.executeQuery("select*fromPS_INFO");
while(rs.next()){
System.out.println(rs.getString(2));
}
}
}
java主要分三块,j2se:java的基础核心语言。j2me:java的微型模块,专门针对内存小,没有持续电源等小型设备。j2ee:java的企业模块,专门针对企业数据库服务器的连接维护。 |
|