search
Homephp教程php手册php daodb插入、更新与删除数据

php daodb插入、更新与删除数据

Jun 13, 2016 pm 12:24 PM
includephpandcodedeletecopyinsertdatarenew

复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //连接数据库
$conn -> Connect('localhost', 'root', '1981427', 'test');
$conn -> Execute("insert into tablename1 values('9','zhuzhao', 'Simon')"); //执行SQL
?>


复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //创建adodb对象,声明数据库类型为MySQL
$conn->Connect("localhost", "root", "1981427", "test"); //连接数据库,其中mydb为数据库名
$sqle = $conn->Execute("insert into tablename1 values('10','zhuzhao','Simon')"); //使用$sqle来确定SQL是否执行成功
if($sqle) //如果执行成功,则输出执行成功的信息
{
echo "SQL执行成功";
}
else //如果执行失败,则输出错误信息
{
echo $conn->ErrorMsg();
}
?>


复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //创建adodb对象,声明数据库类型为MySQL
$conn->Connect("localhost", "root", "1981427", "test"); //连接数据库,其中mydb为数据库名
$rs = $conn->Execute("SELECT * FROM tablename1"); //执行SQL语句,将结果保存在结果集中
if($rs) //如果执行成功,则输出语句成功执行的信息
{
echo “语句执行成功”;
}
else //如果执行失败,则输出错误信息
{
echo $conn->ErrorMsg();
}
?>


复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //创建adodb对象,声明数据库类型为MySQL
$conn->Connect("localhost", "root", "1981427", "test"); //连接数据库,其中mydb为数据库名
$rs = $conn->Execute("SELECT * FROM tablename1"); //执行SQL语句,将结果保存在结果集中
if($rs) //如果执行成功,则循环读取结果集
{
while (!$rs->EOF) //循环读取$rs中的所有记录
{
echo $rs->fields[0].' '.$rs->fields[1].' '.$rs->fields[2].'
'; //输出当前行
$rs->MoveNext(); //将指针移到下一条记录
}
}
else //如果执行失败,则输出错误信息
{
echo $conn->ErrorMsg();
}
?>


复制代码 代码如下:


include("adodb/adodb.inc.php"); //包含adodb类库文件
$conn = NewADOConnection('mysql'); //创建adodb对象,声明数据库类型为MySQL
$conn->Connect("localhost", "root", "1981427", "test"); //连接数据库,其中mydb为数据库名
$rs = $conn->Execute("SELECT * FROM tablename1"); //执行SQL语句,将结果保存在结果集中
if($rs) //如果执行成功,则循环读取结果集
{
while (!$rs->EOF) //循环读取$rs中的所有记录
{
echo $rs->fields['id'].' '.$rs->fields['username'].' '.$rs->fields['password'].'
'; //输出当前行
$rs->MoveNext(); //将指针移到下一条记录
}
}
else //如果执行失败,则输出错误信息
{
echo $conn->ErrorMsg();
}
?>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor