名前、番号、会社をDBに挿入しています。
私のテーブルは単純です:
id(primary key)
name
slideView
company
渡された名前が存在する場合はこの情報を更新する必要があります。存在しない場合は、このデータで新しい行を作成します。私は見ましREPLACE INTO
たが、それが私にとってうまくいくとは思いません...私はIDにまったく触れないので。
私のコードは次のとおりです。
insertData($name,$count,$company);
function insertData($name, $count, $company) {
#Try/Catch statement to connect to DB, and insert data
try {
#DB username/password
$usernameDB = '****';
$passwordDB = '****';
#Create new PHP Database Object with the address, username, and password as parameters
$pdo = new PDO('mysql:host=localhost;dbname=*****', $usernameDB, $passwordDB);
#Set pdo attributes to handle errors
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
#assign the sth variable (sth means statement handle) to insert the data
$sth = $pdo->prepare("REPLACE INTO ***** SET name = ?, slideView = ?, company = ?");
#Execute the insert
$sth->execute(array($name,$count,$company));
#Error if can't connect or insert
} catch(PDOException $e) {
echo 'Error: ' . $e->getMessage();
}#/try
}
私はSQLに不慣れで、havntはこれを行うための良い方法をまだ見つけました。