//go:build sqlite && !wflib// +build sqlite,!wflib/** Copyright © 2019-2020 Musing Studio LLC.** This file is part of WriteFreely.** WriteFreely is free software: you can redistribute it and/or modify* it under the terms of the GNU Affero General Public License, included* in the LICENSE file in this source code package.*/package writefreelyimport ("database/sql""github.com/go-sql-driver/mysql""github.com/mattn/go-sqlite3""github.com/writeas/web-core/log""regexp")func init() {SQLiteEnabled = trueregex := func(re, s string) (bool, error) {return regexp.MatchString(re, s)}sql.Register("sqlite3_with_regex", &sqlite3.SQLiteDriver{ConnectHook: func(conn *sqlite3.SQLiteConn) error {return conn.RegisterFunc("regexp", regex, true)},})}func (db *datastore) isDuplicateKeyErr(err error) bool {if db.driverName == driverSQLite {if err, ok := err.(sqlite3.Error); ok {return err.Code == sqlite3.ErrConstraint}} else if db.driverName == driverMySQL {if mysqlErr, ok := err.(*mysql.MySQLError); ok {return mysqlErr.Number == mySQLErrDuplicateKey}} else {log.Error("isDuplicateKeyErr: failed check for unrecognized driver '%s'", db.driverName)}return false}func (db *datastore) isIgnorableError(err error) bool {if db.driverName == driverMySQL {if mysqlErr, ok := err.(*mysql.MySQLError); ok {return mysqlErr.Number == mySQLErrCollationMix}} else {log.Error("isIgnorableError: failed check for unrecognized driver '%s'", db.driverName)}return false}func (db *datastore) isHighLoadError(err error) bool {if db.driverName == driverMySQL {if mysqlErr, ok := err.(*mysql.MySQLError); ok {return mysqlErr.Number == mySQLErrMaxUserConns || mysqlErr.Number == mySQLErrTooManyConns}}return false}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。