Db quote: Difference between revisions From Online Manual

Jump to: navigation, search
No edit summary
(briefer description)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
|internal=true
|internal=true
|usage=$smcFunc['db_quote'] (query, values, connection)
|usage=$smcFunc['db_quote'] (query, values, connection)
|description=Works similar to how [[db_query]] works, but it does not execute the query. Formats as if it where going to be and returns the string. It can be used to prepare parts of query to be used later on.
|description=Formats the query as [[db_query]] does, but it does not execute the query. Used to prepare parts of query to be used later on.
|parameters={{parmdesc
|parameters={{parmdesc
   |query|d1=the query (or part of it) to be formatted
   |query|d1=the query (or part of it) to be formatted
Line 17: Line 17:
);
);
}}
}}
<noinclude>
<noinclude>
[[Category:Database Functions]]</noinclude>
[[Category:Database Functions]]</noinclude>

Latest revision as of 16:52, 11 October 2012

Usage:

$smcFunc['db_quote'] (query, values, connection)


Description: Formats the query as db_query does, but it does not execute the query. Used to prepare parts of query to be used later on.

Parameters:

  • query the query (or part of it) to be formatted
  • values is an array of values you are intending to use in the query.
  • connection the database connection to be used.

Return: a string representing the formatted query.

Example:

$realNameMatches[] = $smcFunc['db_quote'](
	'{string:possible_user}',
	array(
		'possible_user' => $possible_user
	)
);



Advertisement: