delphi中 ExecSQL 与 open
Posted michellexiaoqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi中 ExecSQL 与 open相关的知识,希望对你有一定的参考价值。
对于不用返回结果集的要用execsql
反之则用open;
insert ,update,delete就要用到execsql;
select就要用open
说得对,例子:
with query1 do
close;
SQL.Clear;
SQL.Add(‘Delete From Country Where Name=‘‘England‘‘‘);
ExecSQL;
以上是关于delphi中 ExecSQL 与 open的主要内容,如果未能解决你的问题,请参考以下文章