Click or drag to resize
SQLite3 Class
Static methods for opening instances of IDatabaseConnection and for accessing static SQLite3 properties, and functions.
Inheritance Hierarchy
SystemObject
  SQLitePCL.prettySQLite3

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public static class SQLite3

The SQLite3 type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCompileOptionUsed
Indicates whether the specified option was defined at compile time.
Public methodStatic memberIsCompleteStatement
Determines if the text provided forms a complete SQL statement.
Public methodStatic memberOpen(String)
Opens a SQLite database.
Public methodStatic memberOpen(String, ConnectionFlags, String)
Opens a SQLite database.
Public methodStatic memberOpenInMemory
Opens an in memory SQLite database. This is useful for testing.
Public methodStatic memberResetMemoryHighWater
Reset the memory high-water mark to the current value of MemoryUsed.
Public methodStatic memberStatus
Retrieve runtime status information about the performance of SQLite, and optionally to reset various highwater marks.
Top
Properties
  NameDescription
Public propertyStatic memberCompilerOptions
The SQLite compiler options that were defined at compile time.
Public propertyStatic memberEnableSharedCache
Enables or disables the sharing of the database cache and schema data structures between connections to the same database.
Public propertyStatic memberMemoryHighWater
Returns the maximum value of MemoryUsed since the high-water mark was last reset.
Public propertyStatic memberMemoryUsed
Returns the number of bytes of memory currently outstanding (malloced but not freed) by SQLite.
Public propertyStatic memberSourceId
The SQLite source id.
Public propertyStatic memberVersion
The SQLite version.
Top
See Also