String url = "jdbc:microsoft:sqlserver://localhost:1433;User=sa;Password=";
Connection conn = DriverManager.getConnection(url);
Statement stmt = conn.createStatement();
이렇게 할때 특정 database 는 어떻게 적어주나요?
mysql이라면 localhost/testDB 이런식으로 잡아줬는데. ms 는 잘모르겠네요. 아시는분~
|