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的主要内容,如果未能解决你的问题,请参考以下文章

delphi delete

delphi中我用定时器每隔一段时间执行操作

在 Android SQLite 中使用 execSQL 进行 INSERT 操作

ora-01000 - 超出最大打开游标错误

execSQL()期间的SQLite数据库错误

简单的学习心得:网易云课堂Android开发第六章SQLite与ContentProvider