描述
原因:
在GZFrameworkDemo.Library.Config.DBConnBuilder.controls.ucEx_SQLConfig中 GetDataBaseList()方法中,获取数据库列表SQL字符串为:
SELECT name FROM sys.sysdatabases WHERE dbid>6
解决办...
-- 查看数据库中有大写的表SELECT table_schema,table_name FROM information_schema.tables WHERE table_schema NOT IN ('sys', 'mysql', 'performance_schema', 'information_schema', 'test') AND table_name ...