SQLITE3 TUTORIAL
发布时间:2021-01-01 02:07:12 所属栏目:MySql教程 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 sqlite3 test.db // open sqlite and provide a database name// Creates a table in the database// Primary Key automatically generates values th
|
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 sqlite3 test.db // open sqlite and provide a database name
// Creates a table in the database
// Primary Key automatically generates values that start at 1 and increase by 1
// name is a text field that will hold employee names
create table employees (id integer primary key,name text);
// Insert some employees
insert into employees (id,name) values(1,'Max Eisenhardt');
insert into employees (name) values('Pietro Maximoff');
insert into employees (name) values('Wanda Maximoff');
insert into employees (name) values('Mortimer Toynbee');
insert into employees (name) values('Jason Wyngarde');
// In column mode,each record is shown on a separate line with the data aligned in columns
// headers on shows the column names,if off they wouldn't show
.mode column
.headers on
select * from employees; // Show all employees
// Changes the width of the columns
.width 15 20
.exit // Closes the database
sqlite3 test.db // Reopen database
.tables // Displays the tables
// Displays every value on its own line
.mode line
select * from employees;
// Shows the statements used to create the database. You could also provide a table name to see how that single table was made
.schema OR .schema employees
// You can get a more detailed database view
.mode column
.headers on
select type,name,tbl_name,sql from sqlite_master order by type;
// Used to show the current settings
.show
// Set NULL to 'NULL'
.nullvalue 'NULL'
.show
// Change the prompt for SQLite
.prompt 'sqlite3> '
.show
// Used to export database into SQL format on the screen
.dump
// Used to output to a file
.output ./Documents/sqlite3Files/employees.sql
.dump
.output stdout // Restores output to the screen
// You don't delete a database with any command. You have to delete the file itself
// You can delete a table however
drop table employees;
// You can import the table then with
.read ./Documents/sqlite3Files/employees.sql
// .mode is used to change the formatting of the output
// OPTIONS FOR MODE : column,csv
// html: html table
// insert: insert commands used
// list: List without commas
// tabs: Tab separated list
// How to output a CSV list to a file
.mode csv // You could define the output should be csv
.separator,// OR define the separator for the columns
.output ./Documents/sqlite3Files/employees.csv
.separator,select * from employees;
.output stdout
// Output html table
.mode html
select * from employees;
.output stdout
// line outputs column name and value
.mode line
select * from employees;
.output stdout
// Items with double quotes
.mode tcl
select * from employees;
.output stdout
以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:邯郸站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |


