dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteConnectionStringBuilder Class / WritableSchema Property

In This Topic
WritableSchema Property
In This Topic
Determines whether the SQLITE_MASTER tables can be changed using UPDATE, INSERT, and DELETE statements.
Syntax
'Declaration
 
Public Property WritableSchema As Boolean
 

Property Value

If true - the SQLITE_MASTER tables in which database can be changed using UPDATE, INSERT, and DELETE statements; otherwise they cannot.
Remarks

If this property is specified, the writable_schema SQLite PRAGMA statement is executed when connecting.

Warning: editing SQLITE_MASTER table in such way can result in a corrupt database file.

See Also