<?php
$db=new PDO("sqlite:./db/book.db3");
$db->exec("SET NAMES utf8");
$n=$db->exec("
CREATE TABLE book(
id int autoincrement primary key,
name text not null,
zuozhe text not null,
fenlei text not null,
state text not null,
txturl text not null,
imgurl text not null,
introduce text not null,
");
echo $n;
?>