Home  >  Article  >  Database  >  以IP与Port建立与SQLSERVER的连接_MySQL

以IP与Port建立与SQLSERVER的连接_MySQL

WBOY
WBOYOriginal
2016-06-01 14:10:47804browse

SQL Server

  
package jsp;
import java.sql.*; // JDBC package
public class sql_data {
String url = "jdbc:inetdae:192.168.2.70?sql7=true"; // use your hostname and port number 
String login = "sa"; // use your login here
String password =""; // use your password here
public Connection connection = null;
public Statement st = null;
public ResultSet rs = null;
public sql_data(){
try {
Class.forName("com.inet.tds.TdsDriver").newInstance(); 
DriverManager.setLoginTimeout(10);
} catch(Exception e) {
e.printStackTrace();
}
}



public void sqlclose() {
try { 
st.close();
connection.close();
}
catch(SQLException ex) { 
System.err.println("sqlclose: " + ex.getMessage());
}
}



public ResultSet executeQuery(String sql) { 
try {
connection = DriverManager.getConnection(url,login,password);
connection.setCatalog( "register");
st = connection.createStatement();
rs = st.executeQuery(sql);

catch(SQLException ex) { 
System.err.println("aq.executeQuery: " + ex.getMessage());
}
return rs;
}

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn