use of com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement42 in project mssql-jdbc by Microsoft.
the class Wrapper42Test method PreparedSatement42Test.
/**
* Tests creation of SQLServerPreparedSatement42 object
*
* @throws SQLException
*/
@Test
public void PreparedSatement42Test() throws SQLException {
String sql = "SELECT SUSER_SNAME()";
PreparedStatement pstmt = connection.prepareStatement(sql);
if (1.8d <= javaVersion && 4 == major && 2 == minor) {
assertTrue(pstmt instanceof SQLServerPreparedStatement42);
} else {
assertTrue(pstmt instanceof SQLServerPreparedStatement);
}
}
Aggregations