摘要:
一定要牢记软件工程的铁律:可能出错的地方一定会出错。每个变量都做初始化,引用每个参数都会做有效性检查,在可能出错的每个地方都会做边界条件检查,这样开发出来的程序一定会稳固很多,就是出错也会很容易修改。野路子出来的高手,一般开发速度很快,但做完后bug很多,经常需要很长时间修改。而真正的高手,追求的境 阅读全文
摘要:
sql>drop tablespace zfxfzb; ora-01549:表空间非空,请使用INCLUDING CONTENTS 选项 sql>drop tablespace zfxfzb INCLUDING CONTENTS and datafiles; ora-00604:递归sql层1出现错 阅读全文
摘要:
function UnicodeToAnsi(s: WideString): string;var lpChar: PChar; len: integer;begin len := Length(s) * 2; GetMem(lpChar, len); ZeroMemory(lpChar, len) 阅读全文
摘要:
delphi中调用 DLL一定要注意声明函数的大小写 阅读全文
摘要:
procedure TForm1.Button1Click(Sender: TObject);var s:string;begin s := 'dsd' ; s:= s + slinebreak +s; //sLineBreak 换行 raise Exception.Create('test');e 阅读全文
摘要:
转:https://www.cnblogs.com/limingliyu/archive/2016/07 使用IDHTTP,下面是一些关于 GET、POST 请求基本使用方法的代码 一、GET 请求 如果Get需要添加请求参数,则直接在地址后添加,各参数间用&连接 如:http://dict.you 阅读全文
摘要:
国外 视频讲解 http://codegearguru.com/index.phpAbout Delphi http://delphi.about.com/od/ 国内 大富翁 http://www.dfwlt.com/forum.php?gid=1Delphi盒子 http://www.2ccc. 阅读全文
摘要:
DELPHI 各版本下载 链接: https://pan.baidu.com/s/1qYCU8kk 密码: igmc 阅读全文
摘要:
转:http://www.cnblogs.com/jay-xu33/p/5210098.html oracle11g 修改字符集 修改为ZHS16GBK1.cmd下,cd到oracle数据库软件的服务器端 如:D:\app\Administrator\product\11.2.0\dbhome_1\ 阅读全文
摘要:
delphi 判断调试状态 delphi 判断调试状态 D7:DebugHook 该变量在调试状态下值为1,运行模式为0,例如,我们可以使用如下的代码来简单控制: if DebugHook=0 thenDXE6 : if IsDebuggerPresent then LangManager.Acti 阅读全文