小弟刚搭建了个框架 数据库用的是sql 2005 以前框架只是打印sql语句 但是现在多了个这个2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] SQL Warning: 0, SQLState: 
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] [Microsoft][SQLServer 2000 Driver for JDBC]Database changed to test
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] SQL Warning: 0, SQLState: 
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]已将数据库上下文更改为 'test'。
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] SQL Warning: 0, SQLState: 
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] [Microsoft][SQLServer 2000 Driver for JDBC]Language changed to 简体中文
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] SQL Warning: 0, SQLState: 
[2010-06-09 08:02:08,687 WARN http-8088-Processor25 org.hibernate.util.JDBCExceptionReporter] [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]已将语言设置更改为 简体中文。
我的数据库连接文件 <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
                <prop key="hibernate.connection.useUnicode">true</prop>
                <prop key="hibernate.connection.characterEncoding">utf-8</prop>
                <prop key="hibernate.query.substitutions">true 1, false 0, yes 'Y', no 'N'</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.generate_statistics">false</prop>               
                <prop key="hibernate.use_outer_join">true</prop>
                <prop key="hibernate.jdbc.fetch_size">50</prop>
                <prop key="hibernate.jdbc.batch_size">0</prop>
                <prop key="hibernate.jdbc.use_scrollable_resultset">true</prop>
                <prop key="hibernate.cglib.use_reflection_optimizer">false</prop>
                <prop key="hibernate.cache.use_query_cache">false</prop>
                <prop key="hibernate.cache.use_second_level_cache">false</prop>
            </props>
        </property>请问这个是数据库的问题还是框架的问题?