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

解决方案 »

  1.   

    你的问题问的有点问题,不过我明白了。
    你可以采用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);
      

  2.   

    他说的应该是类似于myeclipse中的数据库插件吧