SqlFunctionFlag class final

Constructors

SqlFunctionFlag()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

SQLITE_DETERMINISTIC → const int
The SQLITE_DETERMINISTIC flag means that the new function always gives the same output when the input parameters are the same
SQLITE_DIRECTONLY → const int
he SQLITE_DIRECTONLY flags is a security feature which is recommended for all application-defined SQL functions, and especially for functions that have side-effects or that could potentially leak sensitive information.
SQLITE_INNOCUOUS → const int
The SQLITE_INNOCUOUS flag means that the function is unlikely to cause problems even if misused.
SQLITE_SUBTYPE → const int
The SQLITE_SUBTYPE flag indicates to SQLite that a function may call sqlite3_value_subtypestatic const int ) to inspect the sub-types of its arguments.