資料庫中插入記錄

2022-08-16 11:48:09 字數 628 閱讀 2624

把一張表中的資料插入資料庫中

現在,我們將建立乙個html表單;通過它我們可以向「person」表中加入新的記錄。

下面演示這個html表單:

在上述案例中,當乙個使用者點選html表單中的「提交submit」按鈕後,表單中的資料會傳送到「insert.php」。「insert.php」檔案與資料庫建立連線,並通過php $_post變數獲取表單中的資料;此時,mysql_query()函式執行「insert into」語句,這樣,一條新的記錄就被新增到資料庫的表單當中了。

下面試「insert.php」頁面的**:

<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con)   mysql_select_db("my_db", $con);$sql="insert into person (firstname, lastname, age) values ('$_post[firstname]','$_post[lastname]','$_post[age]')";if (!mysql_query($sql,$con))   echo "1 record added";mysql_close($con) ?>

Qt 資料庫表中插入記錄

mysql的插入語句 多條記錄 是 qsqlquery query query.prepare insert into table id,title,year values id,title,year query.bindvalue id 1 query.bindvalue title hello ...

java 向資料庫插入記錄

通過statement author administrator 介面statement 所有已知子介面 callablestatement,preparedstatement 一般使用這個 物件由connection.createstatement 建立 public class insert i...

往資料庫中插入資料

private materialenterstore entitymes 入庫表 private materialenterdetail entitymed 入庫明細表 transactionmanager tran datarepository.provider.createtransaction...