v5:reference:connection:param
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| v5:reference:connection:param [2017/05/17 19:19] – mnewnham | v5:reference:connection:param [2021/02/26 01:35] (current) – Call with falsy values: param(false) vs param(0) - see #682 dregad | ||
|---|---|---|---|
| Line 13: | Line 13: | ||
| This method is used with [[v5: | This method is used with [[v5: | ||
| + | |||
| + | On RDBMS with positional (numbered) query parameters such as PostgreSQL, calling '' | ||
| + | |||
| + | <WRAP tip> | ||
| + | Note that calling '' | ||
| + | |||
| + | Compare that with '' | ||
| + | |||
| + | This is illustrated in the examples below. | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| ------------------------------ | ------------------------------ | ||
| ===== Usage ===== | ===== Usage ===== | ||
| + | |||
| + | This is an example of how to use param() to build SQL queries: | ||
| + | |||
| <code php> | <code php> | ||
| - | /* | + | $sql1 = ' |
| - | * Connection to Oracle database | + | . 'name = ' |
| - | */ | + | . 'total = ' . $db-> |
| - | print $db-> | + | |
| - | /* | + | // Reset param count as a standalone operation then build the query |
| - | * prints | + | $db-> |
| - | */ | + | $sql2 = 'SELECT * FROM accounts WHERE id = ' . $db-> |
| + | |||
| + | // Reset param count with a " | ||
| + | $sql3 = ' | ||
| + | . 'name = ' . $db-> | ||
| + | . ' | ||
| </ | </ | ||
| - | < | + | |
| - | /* | + | |
| - | * Connection to IBM DB2 database | + | |
| - | */ | + | See below for the code's output with various database drivers. |
| - | print $db->param(' | + | |
| - | /* | + | ==== MySQL, IBM DB2 ==== |
| - | * prints ? | + | < |
| - | */ | + | $sql1: SELECT |
| + | $sql2: SELECT | ||
| + | $sql3: SELECT | ||
| + | </code> | ||
| + | |||
| + | ==== Oracle | ||
| + | < | ||
| + | $sql1: SELECT | ||
| + | $sql2: SELECT | ||
| + | $sql3: SELECT | ||
| + | </code> | ||
| + | |||
| + | ==== PostgreSQL ==== | ||
| + | < | ||
| + | $sql1: SELECT * FROM accounts WHERE name = $1 AND total = $2 | ||
| + | $sql2: SELECT * FROM accounts WHERE id = $1 | ||
| + | $sql3: SELECT * FROM accounts WHERE name = $1 AND status = $2 | ||
| </ | </ | ||
| + | |||
| + | Without the parameter reset, //$sql2// would be '' | ||
v5/reference/connection/param.1495041555.txt.gz · Last modified: by mnewnham
