xorm/dialects/sqlite3.go

494 lines
12 KiB
Go
Raw Normal View History

2015-04-28 08:25:04 +00:00
// Copyright 2015 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package dialects
2013-10-13 15:57:57 +00:00
import (
2015-02-13 14:52:12 +00:00
"database/sql"
2014-05-24 08:05:48 +00:00
"errors"
"fmt"
"regexp"
2013-12-18 03:31:32 +00:00
"strings"
2013-10-13 15:57:57 +00:00
"xorm.io/xorm/core"
"xorm.io/xorm/schemas"
2014-01-07 09:33:27 +00:00
)
2013-12-17 09:30:05 +00:00
var (
sqlite3ReservedWords = map[string]bool{
"ABORT": true,
"ACTION": true,
"ADD": true,
"AFTER": true,
"ALL": true,
"ALTER": true,
"ANALYZE": true,
"AND": true,
"AS": true,
"ASC": true,
"ATTACH": true,
"AUTOINCREMENT": true,
"BEFORE": true,
"BEGIN": true,
"BETWEEN": true,
"BY": true,
"CASCADE": true,
"CASE": true,
"CAST": true,
"CHECK": true,
"COLLATE": true,
"COLUMN": true,
"COMMIT": true,
"CONFLICT": true,
"CONSTRAINT": true,
"CREATE": true,
"CROSS": true,
"CURRENT_DATE": true,
"CURRENT_TIME": true,
"CURRENT_TIMESTAMP": true,
"DATABASE": true,
"DEFAULT": true,
"DEFERRABLE": true,
"DEFERRED": true,
"DELETE": true,
"DESC": true,
"DETACH": true,
"DISTINCT": true,
"DROP": true,
"EACH": true,
"ELSE": true,
"END": true,
"ESCAPE": true,
"EXCEPT": true,
"EXCLUSIVE": true,
"EXISTS": true,
"EXPLAIN": true,
"FAIL": true,
"FOR": true,
"FOREIGN": true,
"FROM": true,
"FULL": true,
"GLOB": true,
"GROUP": true,
"HAVING": true,
"IF": true,
"IGNORE": true,
"IMMEDIATE": true,
"IN": true,
"INDEX": true,
"INDEXED": true,
"INITIALLY": true,
"INNER": true,
"INSERT": true,
"INSTEAD": true,
"INTERSECT": true,
"INTO": true,
"IS": true,
"ISNULL": true,
"JOIN": true,
"KEY": true,
"LEFT": true,
"LIKE": true,
"LIMIT": true,
"MATCH": true,
"NATURAL": true,
"NO": true,
"NOT": true,
"NOTNULL": true,
"NULL": true,
"OF": true,
"OFFSET": true,
"ON": true,
"OR": true,
"ORDER": true,
"OUTER": true,
"PLAN": true,
"PRAGMA": true,
"PRIMARY": true,
"QUERY": true,
"RAISE": true,
"RECURSIVE": true,
"REFERENCES": true,
"REGEXP": true,
"REINDEX": true,
"RELEASE": true,
"RENAME": true,
"REPLACE": true,
"RESTRICT": true,
"RIGHT": true,
"ROLLBACK": true,
"ROW": true,
"SAVEPOINT": true,
"SELECT": true,
"SET": true,
"TABLE": true,
"TEMP": true,
"TEMPORARY": true,
"THEN": true,
"TO": true,
"TRANSACTI": true,
"TRIGGER": true,
"UNION": true,
"UNIQUE": true,
"UPDATE": true,
"USING": true,
"VACUUM": true,
"VALUES": true,
"VIEW": true,
"VIRTUAL": true,
"WHEN": true,
"WHERE": true,
"WITH": true,
"WITHOUT": true,
}
)
2014-01-07 09:33:27 +00:00
type sqlite3 struct {
Base
}
func (db *sqlite3) Init(d *core.DB, uri *URI, drivername, dataSourceName string) error {
2014-04-18 10:39:07 +00:00
return db.Base.Init(d, db, uri, drivername, dataSourceName)
}
func (db *sqlite3) SQLType(c *schemas.Column) string {
2013-12-18 03:31:32 +00:00
switch t := c.SQLType.Name; t {
case schemas.Bool:
2015-07-08 08:53:35 +00:00
if c.Default == "true" {
c.Default = "1"
} else if c.Default == "false" {
c.Default = "0"
}
return schemas.Integer
case schemas.Date, schemas.DateTime, schemas.TimeStamp, schemas.Time:
return schemas.DateTime
case schemas.TimeStampz:
return schemas.Text
case schemas.Char, schemas.Varchar, schemas.NVarchar, schemas.TinyText,
schemas.Text, schemas.MediumText, schemas.LongText, schemas.Json:
return schemas.Text
case schemas.Bit, schemas.TinyInt, schemas.SmallInt, schemas.MediumInt, schemas.Int, schemas.Integer, schemas.BigInt:
return schemas.Integer
case schemas.Float, schemas.Double, schemas.Real:
return schemas.Real
case schemas.Decimal, schemas.Numeric:
return schemas.Numeric
case schemas.TinyBlob, schemas.Blob, schemas.MediumBlob, schemas.LongBlob, schemas.Bytea, schemas.Binary, schemas.VarBinary:
return schemas.Blob
case schemas.Serial, schemas.BigSerial:
2013-12-18 03:31:32 +00:00
c.IsPrimaryKey = true
c.IsAutoIncrement = true
c.Nullable = false
return schemas.Integer
2013-12-18 03:31:32 +00:00
default:
return t
}
}
func (db *sqlite3) FormatBytes(bs []byte) string {
return fmt.Sprintf("X'%x'", bs)
}
func (db *sqlite3) SupportInsertMany() bool {
2013-12-18 03:31:32 +00:00
return true
}
func (db *sqlite3) IsReserved(name string) bool {
_, ok := sqlite3ReservedWords[name]
return ok
}
func (db *sqlite3) Quote(name string) string {
return "`" + name + "`"
}
func (db *sqlite3) AutoIncrStr() string {
2013-12-18 03:31:32 +00:00
return "AUTOINCREMENT"
}
func (db *sqlite3) SupportEngine() bool {
2013-12-18 03:31:32 +00:00
return false
}
func (db *sqlite3) SupportCharset() bool {
2013-12-18 03:31:32 +00:00
return false
}
2013-09-26 07:19:39 +00:00
func (db *sqlite3) IndexOnTable() bool {
2013-12-18 03:31:32 +00:00
return false
2013-09-26 07:19:39 +00:00
}
func (db *sqlite3) IndexCheckSQL(tableName, idxName string) (string, []interface{}) {
2013-12-18 03:31:32 +00:00
args := []interface{}{idxName}
return "SELECT name FROM sqlite_master WHERE type='index' and name = ?", args
}
func (db *sqlite3) TableCheckSQL(tableName string) (string, []interface{}) {
2013-12-18 03:31:32 +00:00
args := []interface{}{tableName}
return "SELECT name FROM sqlite_master WHERE type='table' and name = ?", args
}
func (db *sqlite3) DropIndexSQL(tableName string, index *schemas.Index) string {
// var unique string
quote := db.Quote
idxName := index.Name
2014-08-28 15:13:04 +00:00
if !strings.HasPrefix(idxName, "UQE_") &&
!strings.HasPrefix(idxName, "IDX_") {
if index.Type == schemas.UniqueType {
2014-08-28 15:13:04 +00:00
idxName = fmt.Sprintf("UQE_%v_%v", tableName, index.Name)
} else {
idxName = fmt.Sprintf("IDX_%v_%v", tableName, index.Name)
}
}
return fmt.Sprintf("DROP INDEX %v", quote(idxName))
}
func (db *sqlite3) ForUpdateSQL(query string) string {
return query
}
2014-04-23 06:01:04 +00:00
/*func (db *sqlite3) ColumnCheckSql(tableName, colName string) (string, []interface{}) {
2013-12-18 03:31:32 +00:00
args := []interface{}{tableName}
sql := "SELECT name FROM sqlite_master WHERE type='table' and name = ? and ((sql like '%`" + colName + "`%') or (sql like '%[" + colName + "]%'))"
return sql, args
2014-04-23 06:01:04 +00:00
}*/
2015-05-19 14:39:50 +00:00
func (db *sqlite3) IsColumnExist(tableName, colName string) (bool, error) {
2014-04-23 06:01:04 +00:00
args := []interface{}{tableName}
2015-05-19 14:39:50 +00:00
query := "SELECT name FROM sqlite_master WHERE type='table' and name = ? and ((sql like '%`" + colName + "`%') or (sql like '%[" + colName + "]%'))"
db.LogSQL(query, args)
2014-04-23 06:01:04 +00:00
rows, err := db.DB().Query(query, args...)
if err != nil {
return false, err
}
defer rows.Close()
if rows.Next() {
return true, nil
}
2014-05-14 12:26:42 +00:00
return false, nil
}
2013-10-12 15:16:51 +00:00
// splitColStr splits a sqlite col strings as fields
func splitColStr(colStr string) []string {
colStr = strings.TrimSpace(colStr)
var results = make([]string, 0, 10)
var lastIdx int
var hasC, hasQuote bool
for i, c := range colStr {
if c == ' ' && !hasQuote {
if hasC {
results = append(results, colStr[lastIdx:i])
hasC = false
}
} else {
if c == '\'' {
hasQuote = !hasQuote
}
if !hasC {
lastIdx = i
}
hasC = true
if i == len(colStr)-1 {
results = append(results, colStr[lastIdx:i+1])
}
}
}
return results
}
func parseString(colStr string) (*schemas.Column, error) {
fields := splitColStr(colStr)
col := new(schemas.Column)
col.Indexes = make(map[string]int)
col.Nullable = true
col.DefaultIsEmpty = true
for idx, field := range fields {
if idx == 0 {
col.Name = strings.Trim(strings.Trim(field, "`[] "), `"`)
continue
} else if idx == 1 {
col.SQLType = schemas.SQLType{Name: field, DefaultLength: 0, DefaultLength2: 0}
continue
}
switch field {
case "PRIMARY":
col.IsPrimaryKey = true
case "AUTOINCREMENT":
col.IsAutoIncrement = true
case "NULL":
if fields[idx-1] == "NOT" {
col.Nullable = false
} else {
col.Nullable = true
}
case "DEFAULT":
col.Default = fields[idx+1]
col.DefaultIsEmpty = false
}
}
return col, nil
}
func (db *sqlite3) GetColumns(tableName string) ([]string, map[string]*schemas.Column, error) {
2013-12-18 03:31:32 +00:00
args := []interface{}{tableName}
s := "SELECT sql FROM sqlite_master WHERE type='table' and name = ?"
db.LogSQL(s, args)
2014-04-18 10:39:07 +00:00
rows, err := db.DB().Query(s, args...)
2013-12-18 03:31:32 +00:00
if err != nil {
return nil, nil, err
}
2014-01-07 09:33:27 +00:00
defer rows.Close()
2013-12-18 03:31:32 +00:00
2014-01-07 09:33:27 +00:00
var name string
for rows.Next() {
err = rows.Scan(&name)
if err != nil {
return nil, nil, err
2013-12-18 03:31:32 +00:00
}
2014-05-24 08:05:48 +00:00
break
}
if name == "" {
return nil, nil, errors.New("no table named " + tableName)
2013-12-18 03:31:32 +00:00
}
2014-01-07 09:33:27 +00:00
nStart := strings.Index(name, "(")
nEnd := strings.LastIndex(name, ")")
reg := regexp.MustCompile(`[^\(,\)]*(\([^\(]*\))?`)
colCreates := reg.FindAllString(name[nStart+1:nEnd], -1)
cols := make(map[string]*schemas.Column)
2013-12-18 03:31:32 +00:00
colSeq := make([]string, 0)
2013-12-18 03:31:32 +00:00
for _, colStr := range colCreates {
reg = regexp.MustCompile(`,\s`)
colStr = reg.ReplaceAllString(colStr, ",")
if strings.HasPrefix(strings.TrimSpace(colStr), "PRIMARY KEY") {
parts := strings.Split(strings.TrimSpace(colStr), "(")
if len(parts) == 2 {
pkCols := strings.Split(strings.TrimRight(strings.TrimSpace(parts[1]), ")"), ",")
for _, pk := range pkCols {
if col, ok := cols[strings.Trim(strings.TrimSpace(pk), "`")]; ok {
col.IsPrimaryKey = true
}
}
}
continue
}
col, err := parseString(colStr)
if err != nil {
return colSeq, cols, err
2013-12-18 03:31:32 +00:00
}
2013-12-18 03:31:32 +00:00
cols[col.Name] = col
colSeq = append(colSeq, col.Name)
}
return colSeq, cols, nil
2013-10-12 15:16:51 +00:00
}
func (db *sqlite3) GetTables() ([]*schemas.Table, error) {
2013-12-18 03:31:32 +00:00
args := []interface{}{}
s := "SELECT name FROM sqlite_master WHERE type='table'"
db.LogSQL(s, args)
2013-12-18 03:31:32 +00:00
2014-04-18 10:39:07 +00:00
rows, err := db.DB().Query(s, args...)
2013-12-18 03:31:32 +00:00
if err != nil {
return nil, err
}
2014-01-07 09:33:27 +00:00
defer rows.Close()
2013-12-18 03:31:32 +00:00
tables := make([]*schemas.Table, 0)
2014-01-07 09:33:27 +00:00
for rows.Next() {
table := schemas.NewEmptyTable()
2014-01-07 09:33:27 +00:00
err = rows.Scan(&table.Name)
if err != nil {
return nil, err
2013-12-18 03:31:32 +00:00
}
if table.Name == "sqlite_sequence" {
continue
}
tables = append(tables, table)
}
return tables, nil
2013-10-12 15:16:51 +00:00
}
func (db *sqlite3) GetIndexes(tableName string) (map[string]*schemas.Index, error) {
2013-12-18 03:31:32 +00:00
args := []interface{}{tableName}
s := "SELECT sql FROM sqlite_master WHERE type='index' and tbl_name = ?"
db.LogSQL(s, args)
2014-04-18 10:39:07 +00:00
rows, err := db.DB().Query(s, args...)
2013-12-18 03:31:32 +00:00
if err != nil {
return nil, err
}
2014-01-07 09:33:27 +00:00
defer rows.Close()
2013-12-18 03:31:32 +00:00
indexes := make(map[string]*schemas.Index, 0)
2014-01-07 09:33:27 +00:00
for rows.Next() {
2016-12-11 04:45:37 +00:00
var tmpSQL sql.NullString
err = rows.Scan(&tmpSQL)
2014-01-07 09:33:27 +00:00
if err != nil {
return nil, err
}
2016-12-11 04:45:37 +00:00
if !tmpSQL.Valid {
continue
2013-12-18 03:31:32 +00:00
}
2016-12-11 04:45:37 +00:00
sql := tmpSQL.String
2013-12-18 03:31:32 +00:00
index := new(schemas.Index)
2013-12-18 03:31:32 +00:00
nNStart := strings.Index(sql, "INDEX")
nNEnd := strings.Index(sql, "ON")
if nNStart == -1 || nNEnd == -1 {
continue
}
2013-12-18 03:31:32 +00:00
indexName := strings.Trim(sql[nNStart+6:nNEnd], "` []")
2017-04-05 10:17:41 +00:00
var isRegular bool
2013-12-18 03:31:32 +00:00
if strings.HasPrefix(indexName, "IDX_"+tableName) || strings.HasPrefix(indexName, "UQE_"+tableName) {
2017-01-09 01:52:23 +00:00
index.Name = indexName[5+len(tableName):]
2017-04-05 10:17:41 +00:00
isRegular = true
2013-12-18 03:31:32 +00:00
} else {
index.Name = indexName
}
if strings.HasPrefix(sql, "CREATE UNIQUE INDEX") {
index.Type = schemas.UniqueType
2013-12-18 03:31:32 +00:00
} else {
index.Type = schemas.IndexType
2013-12-18 03:31:32 +00:00
}
nStart := strings.Index(sql, "(")
nEnd := strings.Index(sql, ")")
colIndexes := strings.Split(sql[nStart+1:nEnd], ",")
index.Cols = make([]string, 0)
for _, col := range colIndexes {
index.Cols = append(index.Cols, strings.Trim(col, "` []"))
}
2017-04-05 10:17:41 +00:00
index.IsRegular = isRegular
2013-12-18 03:31:32 +00:00
indexes[index.Name] = index
}
return indexes, nil
2013-10-12 15:16:51 +00:00
}
2014-01-07 09:33:27 +00:00
func (db *sqlite3) Filters() []Filter {
return []Filter{&IdFilter{}}
2014-01-07 09:33:27 +00:00
}
2017-03-23 06:05:32 +00:00
type sqlite3Driver struct {
}
func (p *sqlite3Driver) Parse(driverName, dataSourceName string) (*URI, error) {
if strings.Contains(dataSourceName, "?") {
dataSourceName = dataSourceName[:strings.Index(dataSourceName, "?")]
}
return &URI{DBType: schemas.SQLITE, DBName: dataSourceName}, nil
2017-03-23 06:05:32 +00:00
}