摘要:
重装Delphi10.2的IDE必要设置: 1,Tools->Options Editor Options->Display 右侧的 Right margin: 设为200 这个设置是为右边线太短,导致代码格式化自动换行. 2, Editor Options->Color 右侧的 Color Spe 阅读全文
摘要:
sql语法:从一个表update到另外一个表 一、 update a set a.name=b.name1 from a,b where a.id=b.id 二、 update table1 set a.status = b.status from table1 a inner join table 阅读全文
摘要:
try except与try finally不同之处 try//尝试执行 {SomeCode} except//出错的时候执行, Except有特定的错误类型 {SomeCode} end; try//尝试执行 {SomeCode} finally//无论如何都强制执行 {SomeCode} end 阅读全文