MysqlndUhConnection::query

(PECL mysqlnd-uh >= 1.0.0-alpha)

MysqlndUhConnection::queryPerforms a query on the database

Opis

public MysqlndUhConnection::query ( mysqlnd_connection $connection , string $query ) : bool

Performs a query on the database (COM_QUERY).

Parametry

connection

Mysqlnd connection handle. Do not modify!

query

The query string.

Zwracane wartości

Returns TRUE on success. Otherwise, returns FALSE

Przykłady

Przykład #1 MysqlndUhConnection::query() example

<?php
class proxy extends MysqlndUhConnection {
 public function 
query($res$query) {
  
printf("%s(%s)\n"__METHOD__var_export(func_get_args(), true));
  
$query "SELECT 'How about query rewriting?'";
  
$ret parent::query($res$query);
  
printf("%s returns %s\n"__METHOD__var_export($rettrue));
  return 
$ret;
 }
}
mysqlnd_uh_set_connection_proxy(new proxy());

$mysqli = new mysqli("localhost""root""""test");
$res $mysqli->query("SELECT 'Welcome mysqlnd_uh!' FROM DUAL");
var_dump($res->fetch_assoc());
?>

Powyższy przykład wyświetli:

proxy::query(array (
  0 => NULL,
  1 => 'SELECT \'Welcome mysqlnd_uh!\' FROM DUAL',
))
proxy::query returns true
array(1) {
  ["How about query rewriting?"]=>
  string(26) "How about query rewriting?"
}

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top