Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/sqlite/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/delphi/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在sqlite数据库中的触发器中使用post_事件,如firebird_Sqlite_Delphi - Fatal编程技术网

在sqlite数据库中的触发器中使用post_事件,如firebird

在sqlite数据库中的触发器中使用post_事件,如firebird,sqlite,delphi,Sqlite,Delphi,在sqllite中使用post_事件触发器 我想在sqlite数据库的触发器中使用post_事件,就像firebird中的post_事件触发器一样 我想知道如何使用它将事件发送到带有警报的delphi应用程序 我在firebird中尝试了post_事件,它向delphi应用程序发送了注释,但对sqlite不起作用 trigger after update, insert, delete post_event 'name'; 通过我找到的文档,我必须使用特殊的函数,但我没有找到函数文件以及如何使

在sqllite中使用post_事件触发器 我想在sqlite数据库的触发器中使用post_事件,就像firebird中的post_事件触发器一样 我想知道如何使用它将事件发送到带有警报的delphi应用程序 我在firebird中尝试了post_事件,它向delphi应用程序发送了注释,但对sqlite不起作用

trigger
after update, insert, delete
post_event 'name';

通过我找到的文档,我必须使用特殊的函数,但我没有找到函数文件以及如何使用它?

如果我理解正确,您希望您的Delphi应用程序具有SQLite支持的事件后功能


SQLite不以本机方式提供此功能,但自定义扩展函数可以这样做。例如,商业产品和注册SQLite后端的这样一个函数。(我不使用这两种产品——这正是Firebird/Delphi社区的建议。)

为什么不使用Firebird?