通常情况下,ResultSetMetaData#getColumnType()
应该为DATETIME
字段返回93
(通常表示为java.sql.Timestamp
)。
对于驱动程序版本 4.2.6420.100 和 4.0.4621.201 (以及jTDS)确实如此。
在Microsoft SQL Server 2005中使用较新的Microsoft JDBC驱动程序( 6.0.7728.100 , 6.0.8112.100 和 6.2.1.0 在partucular中) (9.0.1399),我发现返回了不同的类型代码: -151 ,它甚至不会映射到java.sql.Types
中的任何类型。
与此同时,ResultSetMetaData#getColumnClassName(int)
和ResultSetMetaData#getColumnTypeName(int)
行为正确(分别始终返回java.sql.Timestamp
和datetime
)。
这是使用上述驱动程序和服务器组合运行时失败的单元测试:
package com.example;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import javax.sql.DataSource;
import org.eclipse.jdt.annotation.Nullable;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import com.microsoft.sqlserver.jdbc.SQLServerConnectionPoolDataSource;
public final class MsSqlServerTest {
@Nullable
private static DataSource dataSource;
@Nullable
private Connection conn;
@BeforeClass
public static void setUpOnce() {
dataSource = new SQLServerConnectionPoolDataSource();
((SQLServerConnectionPoolDataSource) dataSource).setURL("jdbc:sqlserver://localhost\\SQLEXPRESS:1433;databaseName=...");
}
@BeforeMethod
public void setUp() throws SQLException {
this.conn = dataSource.getConnection("...", "...");
}
@AfterMethod
public void tearDown() throws SQLException {
if (this.conn != null) {
this.conn.close();
}
this.conn = null;
}
@Test
public void testDateTimeCode() throws SQLException {
try (final Statement stmt = this.conn.createStatement()) {
try {
stmt.executeUpdate("drop table test");
} catch (@SuppressWarnings("unused") final SQLException ignored) {
// ignore
}
stmt.executeUpdate("create table test (value datetime)");
try (final ResultSet rset = stmt.executeQuery("select * from test")) {
final ResultSetMetaData metaData = rset.getMetaData();
assertThat(metaData.getColumnClassName(1), is(java.sql.Timestamp.class.getName()));
assertThat(metaData.getColumnTypeName(1), is("datetime"));
assertThat(metaData.getColumnType(1), is(Types.TIMESTAMP));
}
}
}
}
上述问题不适用于较新的Microsoft SQL Server版本(如2014年)。
SQL Server Management Studio 2014 始终正确报告列类型(DATETIME
),无论其连接的服务器版本如何。
JDBC驱动程序出了什么问题?微软是否再次破坏了与其自有产品的兼容性?
答案 0 :(得分:2)
“微软是否再次破坏了与其产品之一的兼容性?”
从技术上讲,不,因为当前版本的JDBC驱动程序不支持SQL Server 2005.根据JDBC驱动程序的SQL Server requirements:
对于SQL Server的Microsoft JDBC驱动程序4.2和4.1,支持从SQL Server 2008开始。对于SQL Server的Microsoft JDBC驱动程序4.0,支持与SQL Server 2005的[sic]。