24 lines
763 B
Plaintext
24 lines
763 B
Plaintext
:sig
|
|
DTree mysql_query(MySQL* m, String q, StringMap params)
|
|
|
|
:params
|
|
m : pointer to an active MySQL connection struct
|
|
q : a string containing a MySQL query
|
|
params : optional, a list of query parameter keys and values
|
|
return value : a list of rows returned from executing the query
|
|
|
|
:see
|
|
>mysql
|
|
|
|
:content
|
|
Executes a MySQL query and returns the resulting data, if any.
|
|
|
|
`params` provides the query parameter values used by the statement.
|
|
|
|
The result is returned as a `DTree`, which makes it easy to iterate through rows and read fields with the usual `DTree` accessors.
|
|
|
|
Related:
|
|
|
|
- PHP: modern database access through `mysqli_*` or PDO methods rather than the old `mysql_*` family
|
|
- JavaScript / Node.js: clients such as `mysql2`, query builders, or ORM adapters
|