eclipse 用什么方法与SQL Server2005数据库中表格连接

eclipse 用什么方法与SQL Server2005数据库中表格连接

作者: jdh734146298   发布时间: 2011-06-10

你的问题问的有点问题,不过我明白了。
你可以采用jdbc,或者hibernate,ibaits等方式
JDBC的方式:
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
  String strConn="jdbc:sqlserver://localhost:1433;DatabaseName=***";
  String strUser="***";
  String strPassword="***";
  conn=DriverManager.getConnection(strConn,strUser,strPassword);

作者: stevenzxl   发布时间: 2011-06-10