连接 异地 SQL数据库服务器,该怎么连接
发布网友
发布时间:2022-05-03 08:26
我来回答
共2个回答
懂视网
时间:2022-05-03 12:47
update SmokeVehicle set IsLocal=1 where left(vlpn, 2)=‘冀F‘
update SmokeVehicle set IsLocal=2 where left(vlpn, 2)!=‘冀F‘ and left(vlpn, 1)=‘冀‘
update SmokeVehicle set IsLocal=3 where left(vlpn, 1)!=‘冀‘
update SmokeVehicle set IsLocal=4 where vlpn=‘‘ or vlpn is null
区分本异地sql
标签:date where null lpn and local 异地 sql eve
热心网友
时间:2022-05-03 09:55
http://tieba.baidu.com/p/4857679839?pid=100150994613&cid=0#100150994613
//第一步加载驱动
try{//微软公司.数据库 (桥接)SQL数据库
Class.forName
("com.microsoft.sqlserver.jdbc.SQLServerDriver");
} catch(ClassNotFoundException e) {
e.printStackTrace();//打印堆叠追踪
}
//定义连接对象
Connection conn=null;
//定义语句执行对象
Statement stmt=null;
try{
//第二步:获取连接的对象
//参数设置:连接字符串,数据库用命名,密码
conn=DriverManager.getConnection
("jdbc:sqlserver://localhost:1433;databasename=stuSys", "sa", "");
//本地主机↑ 数据库的编号
数据库文件夹名字
//第三步:获取语句创建对象 (结果集)
stmt=conn.createStatement();
//第四步:发送语句到数据库并执行 注意SQL插入内容用‘ ’ !
String sql="insert into StuInfo values('404','小东',20,'男','9527','xx工商学院',null,null,'S2SJ124')";
//执行sql语句
stmt.executeUpdate(sql);//执行更新
} catch(SQLException e) {
e.printStackTrace();//打印堆叠追踪
} finally{
try{
//第五步:释放资源非空对象都要顺序进行关闭
if(stmt!=null) stmt.close();
if(conn!=null) conn.close();
} catch(SQLException e) {
e.printStackTrace(); //打印堆叠追踪
}
}
System.out.println("程序结束!");
}
}