摘要:http://www.devart.com/dotconnect/sqlite/docs/MetaData.html https://github.com/sqlitebrowser/sqlitebrowser/releases/tag/v3.5.1 In this overload first p
阅读全文
posted @ 2015-03-24 12:35
®Geovin Du Dream Park™
阅读(607)评论(0)推荐(0)
摘要:http://www.devart.com/dotconnect/db2/docs/MetaData.htmlInstead of specifying the metadata collection name as a string constant, you may use members of...
阅读全文
posted @ 2015-03-24 12:32
®Geovin Du Dream Park™
阅读(343)评论(0)推荐(0)
摘要:http://www.devart.com/dotconnect/postgresql/docs/MetaData.htmlIn this overload first parameter is name of a collection, and second parameter is the ar...
阅读全文
posted @ 2015-03-24 12:28
®Geovin Du Dream Park™
阅读(691)评论(0)推荐(0)
摘要:http://www.devart.com/dotconnect/mysql/docs/MetaData.html In this overload first parameter is name of a collection, and second parameter is the array
阅读全文
posted @ 2015-03-24 12:24
®Geovin Du Dream Park™
阅读(521)评论(0)推荐(0)
摘要:sql server 2005: MySQL 6.7 #所有表的主键select * from information_schema.columns where table_schema='attend' and column_key='PRI'; PostgreSQL 8.4,9.3 sql se
阅读全文
posted @ 2015-03-21 14:51
®Geovin Du Dream Park™
阅读(1312)评论(0)推荐(0)
摘要:create database Liber; use Liber; #顯示數据庫 20150210 Geovin Du 涂聚文 SHOW DATABASES; drop table BookKindList; #书目录 create table BookKindList ( BookKindID I
阅读全文
posted @ 2015-02-10 15:01
®Geovin Du Dream Park™
阅读(466)评论(0)推荐(0)
摘要:---循环declare @n intdeclare @rowcount int declare @name varchar(50)create table #temp( id int identity(1,1), ColumnNme nvarchar(100))insert into #temp ...
阅读全文
posted @ 2015-01-15 11:52
®Geovin Du Dream Park™
阅读(326)评论(0)推荐(0)
摘要:--SQL Server 2005, 2008 or 2012:SELECT * FROM information_schema.tables--SQL Server 2000:SELECT * FROM sysobjects WHERE xtype='U' SELECT * FROM sysobj...
阅读全文
posted @ 2015-01-06 22:23
®Geovin Du Dream Park™
阅读(885)评论(0)推荐(0)
摘要:--Parent-Child reationship --涂聚文 2014-08-25 --得位置的子節點函數表(包含本身) if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetBookPlaceChild
阅读全文
posted @ 2014-08-25 16:09
®Geovin Du Dream Park™
阅读(282)评论(0)推荐(0)