摘要:
GUID相关操作 代码 procedure TForm1.Button1Click(Sender: TObject); var GUID1, GUID2: TGUID; begin //创建GUID if CreateGUID(GUID1) <> 0 then Memo1.Lines.Add('创建 阅读全文
摘要:
SQLServer 的驱动程序 介绍 ODBC 有三代不同的 Microsoft ODBC Driver for SQL Server。 SQL Server ODBC 仍作为 Windows 数据访问组件的一部分提供。 不再对其进行维护,且不建议在新开发中使用此驱动程序。 SQL Server N 阅读全文
摘要:
SQLServer 分页查询 方式 TOP 子句 -- 每页20条记录,第1页 select top 20 * from tceshi order by ID -- 第2页(返回ID不是前20条记录) select top 20 * from tceshi where ID not in(selec 阅读全文