Located in /classes/xQuery.php (line 10)
Class | Description |
---|---|
InstallQuery |
************************************************************************** Makes SQL by interpolating values into a format string.
This function works something like printf() for SQL queries. Format strings contain %-escapes signifying that a value from the argument list should be inserted into the string at that point. The routine properly quotes or transforms the value to make sure that it will be handled correctly by the SQL server. The recognized format strings are as follows: %% - is replaced by a single '%' character and does not consume a value form the argument list. %! - inserts the argument in the query unaltered -- BE CAREFUL! %B - treates the argument as a boolean value and inserts either 'Y' or 'N'as appropriate. %C - treats the argument as a column reference. This differs from %I below only in that it passes the '.' operator for separating table and column names on to the SQL server unquoted. %I - treats the argument as an identifier to be quoted. %i - does the same escaping as %I, but does not add surrounding quotation marks. %N - treats the argument as a number and strips off all of it but an initial numeric string with optional sign and decimal point. %Q - treats the argument as a string and quotes it. %q - does the same escaping as %Q, but does not add surrounding quotation marks.
Documentation generated on Sun, 28 Jul 2013 15:07:04 -0400 by phpDocumentor 1.4.4