I want to create simple Java code that displays the version of the MSSQL server:
public void testMSSQLVersion() throws Exception
{
System.out.println("\nTesting SQL query for MSSQL version\n");
try
{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String connectionUrl = "jdbc:sqlserver://localhost:1433;"
+ "database=master;"
+ "user=admin;"
+ "password=dss!Q;";
Connection con = DriverManager.getConnection(connectionUrl);
System.out.println("Connected.");
String SQL = "SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')";
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(SQL);
while (rs.next())
{
System.out.println(rs.getString(1));
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
But when I run the code, I get this error:
com.microsoft.sqlserver.jdbc.SQLServerException: The "variant" data type is not supported.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:190)
at com.microsoft.sqlserver.jdbc.TypeInfo$Builder$16.apply(dtv.java:1996)
at com.microsoft.sqlserver.jdbc.TypeInfo$Builder.build(dtv.java:2158)
Is there any solution to this problem?
source
share