mysqli::real_query
mysqli_real_query
(PHP 5)
mysqli::real_query -- mysqli_real_query — Execute an SQL query
Descrierea
Object oriented style (method):
bool real_query
( string $query
)
Procedural style
Executes a single query against the database whose result can then be retrieved or stored using the mysqli_store_result() or mysqli_use_result() functions.
In order to determine if a given query should return a result set or not, see mysqli_field_count().
Parametri
- link
-
Numai stilul procedural: Un identificator al legăturii întors de mysqli_connect() sau mysqli_init()
- query
-
The query, as a string.
Valorile întroarse
Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eşecului.
mysqli::real_query
There are no user contributed notes for this page.
