Generates a SQL clause with the field's current
Value. This clause is appropriate for use in
assigning a value to the field's underlying column and takes column data type into account including
quoting strings and escaping for Unicode on SQL-Server if the underlying column is a wide column.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax string SQLValue(
SQLValueFlags options,
Object param
)
Function SQLValue (
options As SQLValueFlags,
param As Object
) As String
Parameters
- options
- Type: NetQuarry.DataSQLValueFlags
Options specifying how the clause should be generated. - param
- Type: SystemObject
If non-null and non-blank, this value is used in place of the field' current value.
Return Value
Type:
StringThe clause appropriate for use in assigning a value in the field's underlying column.
See Also