sqlite amp; flex - insert into if not exists?(sqlite amp;flex - 如果不存在则插入?)
问题描述
我正在使用 flex 开发我的第一个桌面应用程序,并且我也是第一次使用 sqlite.
I'm using flex to develop my first desktop app and I'm working with sqlite for the first time as well.
我正在创建我的数据库和所有表,我还想将几行数据添加到几个表中,以便用户在首次安装时可以使用一些数据.
I'm creating my database and all the tables and I would also like to add a few rows of data into a couple of the tables so that the users have some data to work with on first install.
我遇到的唯一问题是每次运行程序时它都会一遍又一遍地插入相同的数据.
The only problem I'm having is every time I run the program it keeps inserting the same data over and over again.
我只是想知道是否可以执行 - INSERT INTO IF NOT EXISTS.或其他类型的工作.
I'm just wondering if its possible to do a - INSERT INTO IF NOT EXISTS. or some other kind of work around.
谢谢!
推荐答案
感谢您的洞察力,但我仍然没有任何运气.
Thanks for the insight but I'm still not having any luck.
这是我的代码
stmt.text = "CREATE TABLE IF NOT EXISTS tbl_breed ("+" breed_id INTEGER PRIMARY KEY AUTOINCREMENT, "+" breed_breed TEXT)";
stmt.execute();
stmt.text = "INSERT OR IGNORE INTO tbl_breed (breed_breed)"+" VALUES ('Test')";
stmt.execute();
好的,我解决了这个问题 - 我猜你必须对主键进行硬编码,这就是我所做的
Ok so I fixed the problem - I guess you have to hard code primary key here's what i did
stmt.text = "CREATE TABLE IF NOT EXISTS tbl_breed ("+" breed_id INTEGER PRIMARY KEY AUTOINCREMENT, "+" breed_breed TEXT)";
stmt.execute();
stmt.text = "INSERT OR IGNORE INTO tbl_breed (breed_id,breed_breed)"+" VALUES ('1','test')";
stmt.execute();
这篇关于sqlite &flex - 如果不存在则插入?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:sqlite &flex - 如果不存在则插入?


基础教程推荐
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01