时间:2021-05-25
packagejsp;
importjava.sql.*;//JDBCpackage
publicclasssql_data{
Stringurl="jdbc:inetdae:192.168.2.70?sql7=true";//useyourhostnameandportnumber
Stringlogin="sa";//useyourloginhere
Stringpassword="";//useyourpasswordhere
publicConnectionconnection=null;
publicStatementst=null;
publicResultSetrs=null;
publicsql_data(){
try{
Class.forName("com.inet.tds.TdsDriver").newInstance();
DriverManager.setLoginTimeout(10);
}catch(Exceptione){
e.printStackTrace();
}
}
publicvoidsqlclose(){
try{
st.close();
connection.close();
}
catch(SQLExceptionex){
System.err.println("sqlclose:"+ex.getMessage());
}
}
publicResultSetexecuteQuery(Stringsql){
try{
connection=DriverManager.getConnection(url,login,password);
connection.setCatalog("register");
st=connection.createStatement();
rs=st.executeQuery(sql);
}
catch(SQLExceptionex){
System.err.println("aq.executeQuery:"+ex.getMessage());
}
returnrs;
}
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
过程概述浏览器查找域名对应的IP地址;浏览器根据IP地址与服务器建立socket连接;浏览器与服务器通信:浏览器请求,服务器处理请求;浏览器与服务器断开连接。以
ASP.net连接SQL2005数据库出现错误提示:在建立与服务器的连接时出错。在连接到SQLServer2005时,在默认的设置下SQLServer不允许进行
1、通过windows里的命令行运行windowsxp系统里的远程连接:mstsc/v:IP:Port/consoleIP:远程服务器的IP地址。Port:就远
远程链接服务器详细配置--建立连接服务器EXECsp_addlinkedserver'远程服务器IP','SQLServer'--标注存储EXECsp_addl
本文实例讲述了PHP操作redis实现的分页列表,新增,删除功能封装类与用法。分享给大家供大家参考,具体如下:_redis_ip=$ip;if($port!='