StatementSqlFlag
Description:
[ CCode ( cprefix = "GDA_STATEMENT_SQL_" , has_type_id = false ) ]
[ Flags ]
public enum StatementSqlFlag
Specifies rendering options
Content:
Enum values:
- PARAMS_AS_COLON -
parameters will be rendered using the ":<param_name>" syntax
- PARAMS_AS_DOLLAR -
parameters will be rendered using the "$<param_number>" syntax where parameters are numbered starting from 1
- PARAMS_AS_QMARK -
parameters will be rendered using the "?<param_number>" syntax where parameters are numbered starting from 1
- PARAMS_AS_UQMARK -
parameters will be rendered using the "?" syntax
- PARAMS_AS_VALUES -
rendering will replace parameters with their values
- PARAMS_LONG - parameters
will be rendered using the "/* name:<param_name> ... */" syntax
- PARAMS_SHORT - parameters
will be rendered using the "##<param_name>..." syntax
- PRETTY - rendering will include
newlines and indentation to make it easy to read
- TIMEZONE_TO_GMT - time
and timestamp with a timezone information are converted to GMT before rendering, and rendering does not show the timezone information