CakeFest 2024: The Official CakePHP Conference

SqlStatement::bind

(No version information available, might only be in Git)

SqlStatement::bindBindet die Parameter einer Anweisung

Beschreibung

public mysql_xdevapi\SqlStatement::bind(string $param): mysql_xdevapi\SqlStatement

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Parameter zur Verfügung.

Parameter-Liste

param

Rückgabewerte

Beispiele

Beispiel #1 mysql_xdevapi\SqlStatement::bind()-Beispiel

<?php

/* ... */

?>
add a note

User Contributed Notes 1 note

up
-1
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();

?>
To Top