摘要:
---居然看到有人用游标,sql就能搞定----create table test(f1 char(10), f2 char(10))--测试表insert into test select a f1,1 f2unionselect b f1,2 f2unionselect c f1,3 f2unionselect d f1,3 f2unionselect e f1,4 f2unionselec......
摘要:
首部 function ansiresemblestext(const atext, aother: string): boolean; $[strutils.pas 功能 返回两个字符串是否相似 说明 ansi(american national standards institute)美国国家标准协会;不区分大小写 参考 function strutils.soundexproc; var......
发布D7帮助中文0.3版
各位国庆好!
新的翻译可以在这里下载,新增加一章,感谢裕飞鹰的无私奉献. 【程序编程相关:
Delphi下的OpenGL开发】 【推荐阅读:
Delphi7的WebService与数】也欢迎大家继续加入我们的这项工程!请与我联系!(airhand@163.com) 【扩展信息:
连接字符串】
-------------------------------
请食言的朋友注意,我鄙视你们!你们丧失了做人最基本的诚信!
摘要:
if not exists (select * from dbo.sysobjects where id = object_id(n[indextable]) and objectproperty(id, nisusertable) = 1)create table indextable(ex char(20), num integer)
go
create procedure setind......