领导要求让我们往数据库中追加2000条记录,测试用,看插入后,数据库的大小是多少。我第一个想到了使用循环,我想到了使用shell编写一个脚本程序,循环输出2000条insert语句,然后用Linux中的管道,就可以实现。于是编写shell代码如下:
-
#! /bin/bash
-
-
x=1
-
while [ $x -le 2000 ]
-
do
-
echo "INSERT INTO Contact_User_Info(user_id, true_name, ***, handset, telphone, org_id, e_mail, order_value) VALUES('peng', '######','男', '###########', '60303601', 'org_id_1', 'chengxiaopeng@xcysoft.com', 0);"
-
echo -n
-
x=$(( $x + 1 ))
-
done
将此shell脚本保存为testData.sh文件。
在终端中进行执行操作
$ chmod a+x testData.sh
$ ./testData.sh | sqlite ltzx.db
慢慢的等待,即可将测试数据插入到ltzx.db数据库中。
阅读(5953) | 评论(0) | 转发(0) |