sqlite

package module
v0.0.0-...-0b3d034 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 22, 2018 License: BSD-3-Clause Imports: 16 Imported by: 0

README

github.com/cznic/sqlite has moved to modernc.org/sqlite (vcs).

Please update your import paths to modernc.org/sqlite.

This repo is now archived.

Documentation

Overview

Package sqlite is an in-process implementation of a self-contained, serverless, zero-configuration, transactional SQL database engine. (Work In Progress)

Changelog

2017-06-10 Windows/Intel no more uses the VM (thanks Steffen Butzer).

2017-06-05 Linux/Intel no more uses the VM (cznic/virtual).

Connecting to a database

To access a Sqlite database do something like

import (
	"database/sql"

	_ "github.com/cznic/sqlite"
)

...

db, err := sql.Open("sqlite", dsnURI)

...

Do not use in production

This is an experimental, pre-alpha, technology preview package.

The alpha release is due when the C runtime support of SQLite in cznic/crt will be complete.

Supported platforms and architectures

See http://github.com/cznic/ccir. To add a newly supported os/arch combination to this package try running 'go generate'.

Sqlite documentation

See https://sqlite.org/docs.html

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Driver

type Driver struct {
	sync.Mutex
}

Driver implements database/sql/driver.Driver.

func (*Driver) Open

func (s *Driver) Open(name string) (c driver.Conn, err error)

Open returns a new connection to the database. The name is a string in a driver-specific format.

Open may return a cached connection (one previously closed), but doing so is unnecessary; the sql package maintains a pool of idle connections for efficient re-use.

The returned connection is only used by one goroutine at a time.

Directories

Path Synopsis
internal
bin
Package sqlite is an in-process implementation of a self-contained, serverless, zero-configuration, transactional SQL database engine.
Package sqlite is an in-process implementation of a self-contained, serverless, zero-configuration, transactional SQL database engine.
mptest
mptest /* ** 2013-04-05 ** ** The author disclaims copyright to this source code.
mptest /* ** 2013-04-05 ** ** The author disclaims copyright to this source code.
threadtest1
threadtest1 /* ** 2002 January 15 ** ** The author disclaims copyright to this source code.
threadtest1 /* ** 2002 January 15 ** ** The author disclaims copyright to this source code.
threadtest2
threadtest2 /* ** 2004 January 13 ** ** The author disclaims copyright to this source code.
threadtest2 /* ** 2004 January 13 ** ** The author disclaims copyright to this source code.
threadtest3
/* ** The "Set Error Line" macro.
/* ** The "Set Error Line" macro.
threadtest4
threadtest4 /* ** 2014-12-11 ** ** The author disclaims copyright to this source code.
threadtest4 /* ** 2014-12-11 ** ** The author disclaims copyright to this source code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL