delphi sqlite 自动编号的实现


本文整理自网络,侵删。

 

首先,建个表:

CREATE TABLE artist(
  artistid    INTEGER PRIMARY KEY, --主键,每次insert时让它自动加1
  artistname  TEXT
);

insert语句这样写:

insert into artist (artistid,artistname) values ((SELECT last_insert_rowid())+1,'a');
insert into artist (artistid,artistname) values ((SELECT last_insert_rowid())+1,'b');

结果是:

artistid artistname
---------- ----------
1 a
2 b

相关阅读 >>

Delphi如何获取硬盘所有的分区容量

Delphi tidhttp 超时的解决方案

Delphi function 与 procedure

Delphi 让程序只运行1次

Delphi 免杀下载者代码

Delphi 判断文件扩展名函数

Delphi tstatusbar 用来显示当前程序状态的

Delphi fdmemtable中如何在已有的字段数据集上加入字段

Delphi 62 进制的简单实现

Delphi controls 属性与继承 tshape 类的小练习

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...