SqlStatement::bind
(No version information available, might only be in Git)
SqlStatement::bind — ステートメントのパラメータをバインドする
説明
警告
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
パラメータ
param
-
戻り値
例
例1 mysql_xdevapi\SqlStatement::bind() の例
<?php
/* ... */
?>
+add a note
User Contributed Notes 1 note
me25show at gmail dot com ¶
5 years ago
bind using example:
<?php
try {
$session = mysql_xdevapi\getSession("mysqlx://user:password@host");
} catch(Exception $e) {
die("Connection could not be established: " . $e->getMessage());
}
$stmt = $session->sql("SELECT * FROM table WHERE id=? AND data=?");
$stmt->bind(1);
$stmt->bind("data");
$result = $stmt->execute();
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google