You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 6, 2019. It is now read-only.
WulfGamesYT edited this page Mar 10, 2019
·
10 revisions
Here is the list of all the functions in the latest version. WARNING: Some functions might not be available, or some functions might work differently in older versions.
$pdoDatabases The array of PDO connections for each prepared statement to be run with.
$query The SQL query
PLEASE NOTE: You won't need to use new MultiDatabasePDOStatement() in your code, instead can use the prepare method in the MultiDatabasePDO class which will return a new instance of this MultiDatabasePDOStatement class.
Function: bindValue
publicfunction bindValue($nameOrNumber, $value)
$nameOrNumber The name or number of the placeholder (must precede with a colon ':' if using a string placeholder).
$value The variable or value to pass to the placeholder.