用JDBC-ODBC桥连接SQL的话:
private static String strDBDrive="sun.jdbc.odbc.JdbcOdbcDrive";
private static String strDBUrl="jdbc:odbc:bookstore";用Microsoft的JDBC驱动的话:private static String strDBDrive="com.microsoft.jdbc.sqlserver.SQLServerDriver";
private static String strDBUrl="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=bookstore";