Maison > php教程 > php手册 > le corps du texte

PHP中使用SQLite快速上手教程

WBOY
Libérer: 2016-05-26 08:20:08
original
918 Les gens l'ont consulté

SQLite是一款小巧轻型的数据库,支持的SQL语句不会逊色于其他数据库,支持的程序语言有Tcl、C#、PHP、Java等,现在我们来学习在PHP中如何使用SQLite.

一、如何建立文件夹:

SQLite会自动判断,文件夹是否存在,如果不存在才会建立.

try{ 
	$db_conn = new PDO('sqlite:mydb.sqlite'); 
}catch(PDOException $e){ 
	echo 'Error'; 
} 
$stmt = "CREATE TABLE mytable(id, user)"; 
$db_conn->exec($stmt);
Copier après la connexion

二、如何写入文件:

使用方式和 MySQL 差不多.

$stmt = "INSERT INTO mytable(id, user) VALUES('1', 'AAA')"; 
$db_conn->exec($stmt);
Copier après la connexion

三、如何使用资料:

使用方式和 MySQL 差不多.

$sth = $db_conn->prepare("SELECT id, user FROM mytable"); 
	$sth->execute();  
	while($row = $sth->fetch(PDO::FETCH_ASSOC)){ 
	echo $row['id'].':'.$row['user'].''; 
}
Copier après la connexion


本文地址:

转载随意,但请附上文章地址:-)

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal