そして私のコードは次のとおりです。
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection con=DriverManager.getConnection("jdbc:sqlserver://localhost;jithin-pc:1433;databaseName=news;IntegratedSecurity=true");
String qr="SELECT * FROM base";
Statement st=con.createStatement();
ResultSet rs=st.executeQuery(qr);
rs.next();
System.out.println(rs.getString(1));
out.println(rs.getString(1));
}
catch(Exception e)
{
System.out.println(e);
out.println(e);
}
私は以下のようなエラーが発生しています:
com.microsoft.sqlserver.jdbc.SQLServerException: The connection string contains a badly formed name or value.
SQL設定のファイアウォールなどを変更してみました。何か提案があれば教えてください