摘要:
--读取库中的所有表名 select name from sysobjects where xtype='u' --读取指定表的所有列名 select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名') 阅读全文
摘要:
说明:在xml中不需要做任何特别操作,即ID列为string或int时,向xml文件中添加数据时实现ID的自增长XMl文件:XML文件Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<?xmlversion="1.0"standalone="ye... 阅读全文