SQLite3数据库操作:建库,建表,添加,查询,修改,删除

前端之家收集整理的这篇文章主要介绍了SQLite3数据库操作:建库,建表,添加,查询,修改,删除前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
(Command Line in Windows OS:)
C:\>sqlite3 mydatabase.db sqlite> create table user(id integer,username text,password text); sqlite> insert into user values(1,'king','king'); sqlite> select * from user; sqlite> update user set username='kong',password='kong' where id=1; sqlite> delete from user where username='kong';
原文链接:https://www.f2er.com/sqlite/201264.html

猜你在找的Sqlite相关文章