当前位置: 技术问答>java相关
哪位可以给我说一下在JAVA中应如何链到SYBASE数据库(JDBC方法)
来源: 互联网 发布时间:2015-11-03
本文导语: 应从什么地方下载SYBASE的JDBC驱动程序,具体链接数据库的方法 | 好的,你先把这个东西放到类路径下 为了保险,你可以放到java_home/jre/lib/ext 这样就可以什么都不用设置 然后你写一个程序 pub...
应从什么地方下载SYBASE的JDBC驱动程序,具体链接数据库的方法
|
好的,你先把这个东西放到类路径下
为了保险,你可以放到java_home/jre/lib/ext
这样就可以什么都不用设置
然后你写一个程序
public class JDBCtest{
public static void main(String args[]){
//上面两个括号
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
}catch(Exception ex){
System.out.println("1");
ex.printStackTrace();
}
try{
// Connection conn=DriverManager.getConnection("jdbc:mysql://172.16.58.160/haweather?user=aaa&password=aaa");
System.out.println("Con");
Connection conn=DriverManager.getConnection("jdbc:mysql://172.16.58.160/haweather","root","tjrrbs");
Statement stmt=null;
ResultSet rs=null;
stmt=conn.createStatement();//ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE)
rs=stmt.executeQuery("select tip from hasms_configtype order by no");
rs.next();
System.out.println(rs.getString(1));
rs.close();
stmt.close();
}catch(Exception ex){
System.out.println("2");
ex.printStackTrace();
}finally{
}
//下面两个括号
}
}
这是我的mysql下测试的程序,你把相应的字段该成sybase的就可以
为了保险,你可以放到java_home/jre/lib/ext
这样就可以什么都不用设置
然后你写一个程序
public class JDBCtest{
public static void main(String args[]){
//上面两个括号
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
}catch(Exception ex){
System.out.println("1");
ex.printStackTrace();
}
try{
// Connection conn=DriverManager.getConnection("jdbc:mysql://172.16.58.160/haweather?user=aaa&password=aaa");
System.out.println("Con");
Connection conn=DriverManager.getConnection("jdbc:mysql://172.16.58.160/haweather","root","tjrrbs");
Statement stmt=null;
ResultSet rs=null;
stmt=conn.createStatement();//ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE)
rs=stmt.executeQuery("select tip from hasms_configtype order by no");
rs.next();
System.out.println(rs.getString(1));
rs.close();
stmt.close();
}catch(Exception ex){
System.out.println("2");
ex.printStackTrace();
}finally{
}
//下面两个括号
}
}
这是我的mysql下测试的程序,你把相应的字段该成sybase的就可以