
mysql
风中暮雨
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
winform 程序打包
winform 程序打包,并将mysql数据库安装包也打包进去,安装时先检测机器上是否安装mysql,如果安装了就直接安装程序,否则先安装mysql!原创 2012-12-03 15:28:58 · 763 阅读 · 1 评论 -
SqlServer/MySql查询某个数据库中表的数量
MySql的统计方法 SELECT count( * ) FROM information_schema.tables WHERE TABLE_SCHEMA = '库名' SqlServer的统计方法 select count(*) as TableCount from sysobjects where type='u' and status>=0转载 2013-08-08 08:42:16 · 3050 阅读 · 0 评论