<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration >
   <session-factory > 
     <property name ="connection.url" > 
        jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=sgl
     </property > 
     <property name ="connection.driver_class" > 
        com.microsoft.jdbc.sqlserver.SQLServerDriver
     </property > 
     <property name ="connection.username" > 
        sa
     </property > 
     <property name ="connection.password" > 
        sa
     </property > 
     <property name ="dialect" > 
        org.hibernate.dialect.SQLServerDialect
     </property > 
     <property name ="hibernate.show_sql" > 
        true
     </property > 
     <property name ="hibernate.transaction.factory_class" > 
        org.hibernate.transaction.JDBCTransactionFactory
     </property > 
     <mapping resource ="com/rong/orm/user.hbm.xml"/>     
   </session-factory > 
</hibernate-configuration > 
java.sql.SQLWarning: [Microsoft][SQLServer 2000 Driver for JDBC]Database changed to sgl
怎么解决,查了很多资料