Convert Figma logo to code with AI

mattn logogo-sqlite3

sqlite3 driver for go using database/sql

7,832
1,093
7,832
163

Top Related Projects

15,960

general purpose extensions to golang's database/sql

36,491

The fantastic ORM library for Golang, aims to be developer friendly

9,003

Pure Go Postgres driver for database/sql

14,442

Go MySQL Driver is a MySQL driver for Go's (golang) database/sql package

Quick Overview

mattn/go-sqlite3 is a popular SQLite driver for Go that provides a pure Go interface to SQLite3 databases. It allows Go programs to create, read, update, and delete SQLite databases without requiring external dependencies or CGo.

Pros

  • Pure Go implementation, making it easy to cross-compile and deploy
  • Supports both in-memory and file-based SQLite databases
  • Provides a familiar database/sql interface for Go developers
  • Actively maintained with regular updates and bug fixes

Cons

  • Performance may be slower compared to CGo-based SQLite drivers
  • Limited support for some advanced SQLite features
  • Potential compatibility issues with certain SQLite extensions
  • May require manual compilation on some platforms due to its pure Go nature

Code Examples

  1. Opening a database connection:
import (
    "database/sql"
    _ "github.com/mattn/go-sqlite3"
)

db, err := sql.Open("sqlite3", "./database.db")
if err != nil {
    log.Fatal(err)
}
defer db.Close()
  1. Executing a simple query:
rows, err := db.Query("SELECT id, name FROM users WHERE age > ?", 18)
if err != nil {
    log.Fatal(err)
}
defer rows.Close()

for rows.Next() {
    var id int
    var name string
    err = rows.Scan(&id, &name)
    if err != nil {
        log.Fatal(err)
    }
    fmt.Printf("ID: %d, Name: %s\n", id, name)
}
  1. Inserting data with prepared statements:
stmt, err := db.Prepare("INSERT INTO users(name, age) VALUES(?, ?)")
if err != nil {
    log.Fatal(err)
}
defer stmt.Close()

_, err = stmt.Exec("John Doe", 30)
if err != nil {
    log.Fatal(err)
}

Getting Started

  1. Install the package:

    go get github.com/mattn/go-sqlite3
    
  2. Import the package in your Go code:

    import (
        "database/sql"
        _ "github.com/mattn/go-sqlite3"
    )
    
  3. Open a database connection:

    db, err := sql.Open("sqlite3", "./database.db")
    if err != nil {
        log.Fatal(err)
    }
    defer db.Close()
    
  4. Start using the database with standard database/sql methods.

Competitor Comparisons

15,960

general purpose extensions to golang's database/sql

Pros of sqlx

  • Provides a higher-level abstraction over database operations, simplifying common tasks
  • Supports multiple database drivers, not limited to SQLite
  • Offers convenient methods for scanning query results into structs and slices

Cons of sqlx

  • Adds an extra layer of abstraction, which may impact performance for simple operations
  • Requires learning additional API methods and conventions
  • May not expose all low-level database-specific features

Code Comparison

sqlx:

db, _ := sqlx.Connect("sqlite3", "test.db")
var users []User
db.Select(&users, "SELECT * FROM users WHERE age > ?", 18)

go-sqlite3:

db, _ := sql.Open("sqlite3", "test.db")
rows, _ := db.Query("SELECT * FROM users WHERE age > ?", 18)
// Manual scanning of rows required

Summary

sqlx provides a more convenient and feature-rich API for database operations, supporting multiple drivers and offering easier data mapping. However, it introduces an additional abstraction layer and may not expose all low-level features. go-sqlite3 is a lower-level driver specifically for SQLite, offering direct access to SQLite features but requiring more manual handling of database operations.

36,491

The fantastic ORM library for Golang, aims to be developer friendly

Pros of gorm

  • Higher-level abstraction, providing ORM functionality for easier database operations
  • Supports multiple databases (SQLite, MySQL, PostgreSQL, etc.), not just SQLite
  • Offers features like migrations, associations, and hooks for more complex data modeling

Cons of gorm

  • Steeper learning curve due to its more extensive feature set
  • Potentially slower performance for simple queries compared to direct SQL execution
  • May introduce unnecessary complexity for projects with basic database needs

Code Comparison

go-sqlite3 (basic query):

rows, err := db.Query("SELECT id, name FROM users WHERE age > ?", 18)
for rows.Next() {
    var id int
    var name string
    rows.Scan(&id, &name)
}

gorm (equivalent query):

var users []User
db.Where("age > ?", 18).Select("id", "name").Find(&users)
for _, user := range users {
    // Access user.ID and user.Name
}

Summary

go-sqlite3 is a low-level SQLite driver for Go, providing direct access to SQLite databases. It's lightweight and efficient for simple SQLite operations. gorm, on the other hand, is a full-featured ORM that supports multiple databases and offers higher-level abstractions for database operations. While gorm provides more functionality and ease of use for complex scenarios, it may introduce overhead for simpler projects where direct SQL queries suffice.

9,003

Pure Go Postgres driver for database/sql

Pros of pq

  • Designed for PostgreSQL, offering full support for its advanced features
  • Better performance for large-scale applications and complex queries
  • Supports PostgreSQL-specific data types and functions

Cons of pq

  • Limited to PostgreSQL databases, lacking SQLite's portability
  • Requires a separate PostgreSQL server, increasing setup complexity
  • May have a steeper learning curve for developers new to PostgreSQL

Code Comparison

pq:

import (
    "database/sql"
    _ "github.com/lib/pq"
)

db, err := sql.Open("postgres", "user=pqgotest dbname=pqgotest sslmode=verify-full")

go-sqlite3:

import (
    "database/sql"
    _ "github.com/mattn/go-sqlite3"
)

db, err := sql.Open("sqlite3", "./foo.db")

Key Differences

  • pq is specifically for PostgreSQL, while go-sqlite3 is for SQLite
  • pq requires a connection string with database details, go-sqlite3 uses a file path
  • pq supports more advanced database features, go-sqlite3 is simpler and more lightweight
  • go-sqlite3 is better for embedded applications or simple local storage
  • pq is preferred for larger, more complex applications with higher concurrency needs

Both libraries implement the database/sql interface, allowing for similar usage patterns once the connection is established. The choice between them depends on the specific requirements of your project, such as scalability, portability, and feature needs.

14,442

Go MySQL Driver is a MySQL driver for Go's (golang) database/sql package

Pros of mysql

  • Better performance for large-scale applications and concurrent connections
  • Supports more complex queries and advanced SQL features
  • Ideal for distributed systems and multi-server setups

Cons of mysql

  • Requires separate MySQL server installation and configuration
  • More complex setup and maintenance compared to SQLite
  • Higher resource consumption, especially for smaller applications

Code Comparison

mysql:

db, err := sql.Open("mysql", "user:password@tcp(127.0.0.1:3306)/dbname")
if err != nil {
    log.Fatal(err)
}
defer db.Close()

go-sqlite3:

db, err := sql.Open("sqlite3", "./database.db")
if err != nil {
    log.Fatal(err)
}
defer db.Close()

Both drivers implement the database/sql interface, making the usage similar. The main difference lies in the connection string format and the underlying database technology.

mysql is better suited for larger applications with complex data structures and high concurrency needs, while go-sqlite3 is ideal for smaller applications, embedded systems, or local development environments due to its simplicity and self-contained nature.

The choice between these drivers depends on the specific requirements of your project, such as scalability, performance needs, and deployment environment.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

go-sqlite3

Go Reference GitHub Actions Financial Contributors on Open Collective codecov Go Report Card

Latest stable version is v1.14 or later, not v2.

NOTE: The increase to v2 was an accident. There were no major changes or features.

Description

A sqlite3 driver that conforms to the built-in database/sql interface.

Supported Golang version: See .github/workflows/go.yaml.

This package follows the official Golang Release Policy.

Overview

Installation

This package can be installed with the go get command:

go get github.com/mattn/go-sqlite3

go-sqlite3 is cgo package. If you want to build your app using go-sqlite3, you need gcc. However, after you have built and installed go-sqlite3 with go install github.com/mattn/go-sqlite3 (which requires gcc), you can build your app without relying on gcc in future.

Important: because this is a CGO enabled package, you are required to set the environment variable CGO_ENABLED=1 and have a gcc compiler present within your path.

API Reference

API documentation can be found here.

Examples can be found under the examples directory.

Connection String

When creating a new SQLite database or connection to an existing one, with the file name additional options can be given. This is also known as a DSN (Data Source Name) string.

Options are append after the filename of the SQLite database. The database filename and options are separated by an ? (Question Mark). Options should be URL-encoded (see url.QueryEscape).

This also applies when using an in-memory database instead of a file.

Options can be given using the following format: KEYWORD=VALUE and multiple options can be combined with the & ampersand.

This library supports DSN options of SQLite itself and provides additional options.

Boolean values can be one of:

  • 0 no false off
  • 1 yes true on
NameKeyValue(s)Description
UA - Create_auth-Create User Authentication, for more information see User Authentication
UA - Username_auth_userstringUsername for User Authentication, for more information see User Authentication
UA - Password_auth_passstringPassword for User Authentication, for more information see User Authentication
UA - Crypt_auth_crypt
  • SHA1
  • SSHA1
  • SHA256
  • SSHA256
  • SHA384
  • SSHA384
  • SHA512
  • SSHA512
Password encoder to use for User Authentication, for more information see User Authentication
UA - Salt_auth_saltstringSalt to use if the configure password encoder requires a salt, for User Authentication, for more information see User Authentication
Auto Vacuum_auto_vacuum | _vacuum
  • 0 | none
  • 1 | full
  • 2 | incremental
For more information see PRAGMA auto_vacuum
Busy Timeout_busy_timeout | _timeoutintSpecify value for sqlite3_busy_timeout. For more information see PRAGMA busy_timeout
Case Sensitive LIKE_case_sensitive_like | _cslikebooleanFor more information see PRAGMA case_sensitive_like
Defer Foreign Keys_defer_foreign_keys | _defer_fkbooleanFor more information see PRAGMA defer_foreign_keys
Foreign Keys_foreign_keys | _fkbooleanFor more information see PRAGMA foreign_keys
Ignore CHECK Constraints_ignore_check_constraintsbooleanFor more information see PRAGMA ignore_check_constraints
ImmutableimmutablebooleanFor more information see Immutable
Journal Mode_journal_mode | _journal
  • DELETE
  • TRUNCATE
  • PERSIST
  • MEMORY
  • WAL
  • OFF
For more information see PRAGMA journal_mode
Locking Mode_locking_mode | _locking
  • NORMAL
  • EXCLUSIVE
For more information see PRAGMA locking_mode
Modemode
  • ro
  • rw
  • rwc
  • memory
Access Mode of the database. For more information see SQLite Open
Mutex Locking_mutex
  • no
  • full
Specify mutex mode.
Query Only_query_onlybooleanFor more information see PRAGMA query_only
Recursive Triggers_recursive_triggers | _rtbooleanFor more information see PRAGMA recursive_triggers
Secure Delete_secure_deleteboolean | FASTFor more information see PRAGMA secure_delete
Shared-Cache Modecache
  • shared
  • private
Set cache mode for more information see sqlite.org
Synchronous_synchronous | _sync
  • 0 | OFF
  • 1 | NORMAL
  • 2 | FULL
  • 3 | EXTRA
For more information see PRAGMA synchronous
Time Zone Location_locautoSpecify location of time format.
Transaction Lock_txlock
  • immediate
  • deferred
  • exclusive
Specify locking behavior for transactions.
Writable Schema_writable_schemaBooleanWhen this pragma is on, the SQLITE_MASTER tables in which database can be changed using ordinary UPDATE, INSERT, and DELETE statements. Warning: misuse of this pragma can easily result in a corrupt database file.
Cache Size_cache_sizeintMaximum cache size; default is 2000K (2M). See PRAGMA cache_size

DSN Examples

file:test.db?cache=shared&mode=memory

Features

This package allows additional configuration of features available within SQLite3 to be enabled or disabled by golang build constraints also known as build tags.

Click here for more information about build tags / constraints.

Usage

If you wish to build this library with additional extensions / features, use the following command:

go build -tags "<FEATURE>"

For available features, see the extension list. When using multiple build tags, all the different tags should be space delimited.

Example:

go build -tags "icu json1 fts5 secure_delete"

Feature / Extension List

ExtensionBuild TagDescription
Additional Statisticssqlite_stat4This option adds additional logic to the ANALYZE command and to the query planner that can help SQLite to chose a better query plan under certain situations. The ANALYZE command is enhanced to collect histogram data from all columns of every index and store that data in the sqlite_stat4 table.

The query planner will then use the histogram data to help it make better index choices. The downside of this compile-time option is that it violates the query planner stability guarantee making it more difficult to ensure consistent performance in mass-produced applications.

SQLITE_ENABLE_STAT4 is an enhancement of SQLITE_ENABLE_STAT3. STAT3 only recorded histogram data for the left-most column of each index whereas the STAT4 enhancement records histogram data from all columns of each index.

The SQLITE_ENABLE_STAT3 compile-time option is a no-op and is ignored if the SQLITE_ENABLE_STAT4 compile-time option is used
Allow URI Authoritysqlite_allow_uri_authorityURI filenames normally throws an error if the authority section is not either empty or "localhost".

However, if SQLite is compiled with the SQLITE_ALLOW_URI_AUTHORITY compile-time option, then the URI is converted into a Uniform Naming Convention (UNC) filename and passed down to the underlying operating system that way
App Armorsqlite_app_armorWhen defined, this C-preprocessor macro activates extra code that attempts to detect misuse of the SQLite API, such as passing in NULL pointers to required parameters or using objects after they have been destroyed.

App Armor is not available under Windows.
Disable Load Extensionssqlite_omit_load_extensionLoading of external extensions is enabled by default.

To disable extension loading add the build tag sqlite_omit_load_extension.
Enable Serialization with libsqlite3sqlite_serializeSerialization and deserialization of a SQLite database is available by default, unless the build tag libsqlite3 is set.

To enable this functionality even if libsqlite3 is set, add the build tag sqlite_serialize.
Foreign Keyssqlite_foreign_keysThis macro determines whether enforcement of foreign key constraints is enabled or disabled by default for new database connections.

Each database connection can always turn enforcement of foreign key constraints on and off and run-time using the foreign_keys pragma.

Enforcement of foreign key constraints is normally off by default, but if this compile-time parameter is set to 1, enforcement of foreign key constraints will be on by default
Full Auto Vacuumsqlite_vacuum_fullSet the default auto vacuum to full
Incremental Auto Vacuumsqlite_vacuum_incrSet the default auto vacuum to incremental
Full Text Search Enginesqlite_fts5When this option is defined in the amalgamation, versions 5 of the full-text search engine (fts5) is added to the build automatically
International Components for Unicodesqlite_icuThis option causes the International Components for Unicode or "ICU" extension to SQLite to be added to the build
Introspect PRAGMASsqlite_introspectThis option adds some extra PRAGMA statements.
  • PRAGMA function_list
  • PRAGMA module_list
  • PRAGMA pragma_list
JSON SQL Functionssqlite_jsonWhen this option is defined in the amalgamation, the JSON SQL functions are added to the build automatically
Math Functionssqlite_math_functionsThis compile-time option enables built-in scalar math functions. For more information see Built-In Mathematical SQL Functions
OS Tracesqlite_os_traceThis option enables OSTRACE() debug logging. This can be verbose and should not be used in production.
Pre Update Hooksqlite_preupdate_hookRegisters a callback function that is invoked prior to each INSERT, UPDATE, and DELETE operation on a database table.
Secure Deletesqlite_secure_deleteThis compile-time option changes the default setting of the secure_delete pragma.

When this option is not used, secure_delete defaults to off. When this option is present, secure_delete defaults to on.

The secure_delete setting causes deleted content to be overwritten with zeros. There is a small performance penalty since additional I/O must occur.

On the other hand, secure_delete can prevent fragments of sensitive information from lingering in unused parts of the database file after it has been deleted. See the documentation on the secure_delete pragma for additional information
Secure Delete (FAST)sqlite_secure_delete_fastFor more information see PRAGMA secure_delete
Tracing / Debugsqlite_traceActivate trace functions
User Authenticationsqlite_userauthSQLite User Authentication see User Authentication for more information.
Virtual Tablessqlite_vtableSQLite Virtual Tables see SQLite Official VTABLE Documentation for more information, and a full example here

Compilation

This package requires the CGO_ENABLED=1 environment variable if not set by default, and the presence of the gcc compiler.

If you need to add additional CFLAGS or LDFLAGS to the build command, and do not want to modify this package, then this can be achieved by using the CGO_CFLAGS and CGO_LDFLAGS environment variables.

Android

This package can be compiled for android. Compile with:

go build -tags "android"

For more information see #201

ARM

To compile for ARM use the following environment:

env CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++ \
    CGO_ENABLED=1 GOOS=linux GOARCH=arm GOARM=7 \
    go build -v 

Additional information:

Cross Compile

This library can be cross-compiled.

In some cases you are required to the CC environment variable with the cross compiler.

Cross Compiling from macOS

The simplest way to cross compile from macOS is to use xgo.

Steps:

  • Install musl-cross (brew install FiloSottile/musl-cross/musl-cross).
  • Run CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++ GOARCH=amd64 GOOS=linux CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static".

Please refer to the project's README for further information.

Google Cloud Platform

Building on GCP is not possible because Google Cloud Platform does not allow gcc to be executed.

Please work only with compiled final binaries.

Linux

To compile this package on Linux, you must install the development tools for your linux distribution.

To compile under linux use the build tag linux.

go build -tags "linux"

If you wish to link directly to libsqlite3 then you can use the libsqlite3 build tag.

go build -tags "libsqlite3 linux"

Alpine

When building in an alpine container run the following command before building:

apk add --update gcc musl-dev

Fedora

sudo yum groupinstall "Development Tools" "Development Libraries"

Ubuntu

sudo apt-get install build-essential

macOS

macOS should have all the tools present to compile this package. If not, install XCode to add all the developers tools.

Required dependency:

brew install sqlite3

For macOS, there is an additional package to install which is required if you wish to build the icu extension.

This additional package can be installed with homebrew:

brew upgrade icu4c

To compile for macOS on x86:

go build -tags "darwin amd64"

To compile for macOS on ARM chips:

go build -tags "darwin arm64"

If you wish to link directly to libsqlite3, use the libsqlite3 build tag:

# x86 
go build -tags "libsqlite3 darwin amd64"
# ARM
go build -tags "libsqlite3 darwin arm64"

Additional information:

Windows

To compile this package on Windows, you must have the gcc compiler installed.

  1. Install a Windows gcc toolchain.
  2. Add the bin folder to the Windows path, if the installer did not do this by default.
  3. Open a terminal for the TDM-GCC toolchain, which can be found in the Windows Start menu.
  4. Navigate to your project folder and run the go build ... command for this package.

For example the TDM-GCC Toolchain can be found here.

Errors

  • Compile error: can not be used when making a shared object; recompile with -fPIC

    When receiving a compile time error referencing recompile with -FPIC then you are probably using a hardend system.

    You can compile the library on a hardend system with the following command.

    go build -ldflags '-extldflags=-fno-PIC'
    

    More details see #120

  • Can't build go-sqlite3 on windows 64bit.

    Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit. See: #27

  • go get github.com/mattn/go-sqlite3 throws compilation error.

    gcc throws: internal compiler error

    Remove the download repository from your disk and try re-install with:

    go install github.com/mattn/go-sqlite3
    

User Authentication

This package supports the SQLite User Authentication module.

Compile

To use the User authentication module, the package has to be compiled with the tag sqlite_userauth. See Features.

Usage

Create protected database

To create a database protected by user authentication, provide the following argument to the connection string _auth. This will enable user authentication within the database. This option however requires two additional arguments:

  • _auth_user
  • _auth_pass

When _auth is present in the connection string user authentication will be enabled and the provided user will be created as an admin user. After initial creation, the parameter _auth has no effect anymore and can be omitted from the connection string.

Example connection strings:

Create an user authentication database with user admin and password admin:

file:test.s3db?_auth&_auth_user=admin&_auth_pass=admin

Create an user authentication database with user admin and password admin and use SHA1 for the password encoding:

file:test.s3db?_auth&_auth_user=admin&_auth_pass=admin&_auth_crypt=sha1

Password Encoding

The passwords within the user authentication module of SQLite are encoded with the SQLite function sqlite_cryp. This function uses a ceasar-cypher which is quite insecure. This library provides several additional password encoders which can be configured through the connection string.

The password cypher can be configured with the key _auth_crypt. And if the configured password encoder also requires an salt this can be configured with _auth_salt.

Available Encoders

  • SHA1
  • SSHA1 (Salted SHA1)
  • SHA256
  • SSHA256 (salted SHA256)
  • SHA384
  • SSHA384 (salted SHA384)
  • SHA512
  • SSHA512 (salted SHA512)

Restrictions

Operations on the database regarding user management can only be preformed by an administrator user.

Support

The user authentication supports two kinds of users:

  • administrators
  • regular users

User Management

User management can be done by directly using the *SQLiteConn or by SQL.

SQL

The following sql functions are available for user management:

FunctionArgumentsDescription
authenticateusername string, password stringWill authenticate an user, this is done by the connection; and should not be used manually.
auth_user_addusername string, password string, admin intThis function will add an user to the database.
if the database is not protected by user authentication it will enable it. Argument admin is an integer identifying if the added user should be an administrator. Only Administrators can add administrators.
auth_user_changeusername string, password string, admin intFunction to modify an user. Users can change their own password, but only an administrator can change the administrator flag.
authUserDeleteusername stringDelete an user from the database. Can only be used by an administrator. The current logged in administrator cannot be deleted. This is to make sure their is always an administrator remaining.

These functions will return an integer:

  • 0 (SQLITE_OK)
  • 23 (SQLITE_AUTH) Failed to perform due to authentication or insufficient privileges
Examples
// Autheticate user
// Create Admin User
SELECT auth_user_add('admin2', 'admin2', 1);

// Change password for user
SELECT auth_user_change('user', 'userpassword', 0);

// Delete user
SELECT user_delete('user');

*SQLiteConn

The following functions are available for User authentication from the *SQLiteConn:

FunctionDescription
Authenticate(username, password string) errorAuthenticate user
AuthUserAdd(username, password string, admin bool) errorAdd user
AuthUserChange(username, password string, admin bool) errorModify user
AuthUserDelete(username string) errorDelete user

Attached database

When using attached databases, SQLite will use the authentication from the main database for the attached database(s).

Extensions

If you want your own extension to be listed here, or you want to add a reference to an extension; please submit an Issue for this.

Spatialite

Spatialite is available as an extension to SQLite, and can be used in combination with this repository. For an example, see shaxbee/go-spatialite.

extension-functions.c from SQLite3 Contrib

extension-functions.c is available as an extension to SQLite, and provides the following functions:

  • Math: acos, asin, atan, atn2, atan2, acosh, asinh, atanh, difference, degrees, radians, cos, sin, tan, cot, cosh, sinh, tanh, coth, exp, log, log10, power, sign, sqrt, square, ceil, floor, pi.
  • String: replicate, charindex, leftstr, rightstr, ltrim, rtrim, trim, replace, reverse, proper, padl, padr, padc, strfilter.
  • Aggregate: stdev, variance, mode, median, lower_quartile, upper_quartile

For an example, see dinedal/go-sqlite3-extension-functions.

FAQ

  • Getting insert error while query is opened.

    You can pass some arguments into the connection string, for example, a URI. See: #39

  • Do you want to cross compile? mingw on Linux or Mac?

    See: #106 See also: http://www.limitlessfx.com/cross-compile-golang-app-for-windows-from-linux.html

  • Want to get time.Time with current locale

    Use _loc=auto in SQLite3 filename schema like file:foo.db?_loc=auto.

  • Can I use this in multiple routines concurrently?

    Yes for readonly. But not for writable. See #50, #51, #209, #274.

  • Why I'm getting no such table error?

    Why is it racy if I use a sql.Open("sqlite3", ":memory:") database?

    Each connection to ":memory:" opens a brand new in-memory sql database, so if the stdlib's sql engine happens to open another connection and you've only specified ":memory:", that connection will see a brand new database. A workaround is to use "file::memory:?cache=shared" (or "file:foobar?mode=memory&cache=shared"). Every connection to this string will point to the same in-memory database.

    Note that if the last database connection in the pool closes, the in-memory database is deleted. Make sure the max idle connection limit is > 0, and the connection lifetime is infinite.

    For more information see:

  • Reading from database with large amount of goroutines fails on OSX.

    OS X limits OS-wide to not have more than 1000 files open simultaneously by default.

    For more information, see #289

  • Trying to execute a . (dot) command throws an error.

    Error: Error: near ".": syntax error Dot command are part of SQLite3 CLI, not of this library.

    You need to implement the feature or call the sqlite3 cli.

    More information see #305.

  • Error: database is locked

    When you get a database is locked, please use the following options.

    Add to DSN: cache=shared

    Example:

    db, err := sql.Open("sqlite3", "file:locked.sqlite?cache=shared")
    

    Next, please set the database connections of the SQL package to 1:

    db.SetMaxOpenConns(1)
    

    For more information, see #209.

Contributors

Code Contributors

This project exists thanks to all the people who [contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute here].

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

License

MIT: http://mattn.mit-license.org/2018

sqlite3-binding.c, sqlite3-binding.h, sqlite3ext.h

The -binding suffix was added to avoid build failures under gccgo.

In this repository, those files are an amalgamation of code that was copied from SQLite3. The license of that code is the same as the license of SQLite3.

Author

Yasuhiro Matsumoto (a.k.a mattn)

G.J.R. Timmer