0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-05-24 14:54:48 +00:00
Files
go-sqlite3/driver/pragma.go
Gert-Jan Timmer c90898da72 V2.0.0
Closes #597
Closes #598

* All documentation in Wiki
* Update Examples
* Fix EOL
* Fix CI
2018-07-20 16:02:42 +02:00

25 lines
856 B
Go

// Copyright (C) 2018 The Go-SQLite3 Authors.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
// +build cgo
package sqlite3
const (
PRAGMA_SSE_KEY = "key"
PRAGMA_AUTO_VACUUM = "auto_vacuum"
PRAGMA_CASE_SENSITIVE_LIKE = "case_sensitive_like"
PRAGMA_DEFER_FOREIGN_KEYS = "defer_foreign_keys"
PRAGMA_FOREIGN_KEYS = "foreign_keys"
PRAGMA_IGNORE_CHECK_CONTRAINTS = "ignore_check_constraints"
PRAGMA_JOURNAL_MODE = "journal_mode"
PRAGMA_LOCKING_MODE = "locking_mode"
PRAGMA_QUERY_ONLY = "query_only"
PRAGMA_RECURSIVE_TRIGGERS = "recursive_triggers"
PRAGMA_SECURE_DELETE = "secure_delete"
PRAGMA_SYNCHRONOUS = "synchronous"
PRAGMA_WRITABLE_SCHEMA = "writable_schema"
)