sqlite3.go 317 B

123456789101112131415
  1. // Copyright 2017 The Xorm Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build sqlite3
  5. package main
  6. import (
  7. _ "github.com/mattn/go-sqlite3"
  8. )
  9. func init() {
  10. supportedDrivers["sqlite3"] = "github.com/mattn/go-sqlite3"
  11. }