Small. Fast. Reliable.
Choose any three.
Search for:

SQLite C Interface

Opening A New Database Connection

int sqlite3_open(
  const char *filename,   /* Database filename (UTF-8) */
  sqlite3 **ppDb          /* OUT: SQLite db handle */
);
int sqlite3_open16(
  const void *filename,   /* Database filename (UTF-16) */
  sqlite3 **ppDb          /* OUT: SQLite db handle */
);
int sqlite3_open_v2(
  const char *filename,   /* Database filename (UTF-8) */
  sqlite3 **ppDb,         /* OUT: SQLite db handle */
  int flags,              /* Flags */
  const char *zVfs        /* Name of VFS module to use */
);

R-39350-14264:[These routines open an SQLite database file as specified by the filename argument. ] R-43415-05262:[The filename argument is interpreted as UTF-8 for sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte order for sqlite3_open16(). ] R-47032-28289:[A database connection handle is usually returned in *ppDb, even if an error occurs. The only exception is that if SQLite is unable to allocate memory to hold the sqlite3 object, a NULL will be written into *ppDb instead of a pointer to the sqlite3 object. ] R-08348-34672:[If the database is opened (and/or created) successfully, then SQLITE_OK is returned. Otherwise an error code is returned. ] R-35739-57436:[The sqlite3_errmsg() or sqlite3_errmsg16() routines can be used to obtain an English language description of the error following a failure of any of the sqlite3_open() routines. ]

R-63260-45699:[The default encoding will be UTF-8 for databases created using sqlite3_open() or sqlite3_open_v2(). ] R-56593-29586:[The default encoding for databases created using sqlite3_open16() will be UTF-16 in the native byte order. ]

Whether or not an error occurs when it is opened, resources associated with the database connection handle should be released by passing it to sqlite3_close() when it is no longer required.

The sqlite3_open_v2() interface works like sqlite3_open() except that it accepts two additional parameters for additional control over the new database connection. R-65497-44594:[The flags parameter to sqlite3_open_v2() can take one of the following three values, optionally combined with the SQLITE_OPEN_NOMUTEX, SQLITE_OPEN_FULLMUTEX, SQLITE_OPEN_SHAREDCACHE, SQLITE_OPEN_PRIVATECACHE, and/or SQLITE_OPEN_URI flags: ]

R-33401-06099:[
SQLITE_OPEN_READONLY
The database is opened in read-only mode. If the database does not already exist, an error is returned.
]

R-61561-09244:[

SQLITE_OPEN_READWRITE
The database is opened for reading and writing if possible, or reading only if the file is write protected by the operating system. In either case the database must already exist, otherwise an error is returned.
]

R-24663-27339:[

SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE
The database is opened for reading and writing, and is created if it does not already exist. This is the behavior that is always used for sqlite3_open() and sqlite3_open16().
]

If the 3rd parameter to sqlite3_open_v2() is not one of the combinations shown above optionally combined with other SQLITE_OPEN_* bits then the behavior is undefined.

R-54570-56961:[If the SQLITE_OPEN_NOMUTEX flag is set, then the database connection opens in the multi-thread threading mode as long as the single-thread mode has not been set at compile-time or start-time. ] R-64087-16721:[If the SQLITE_OPEN_FULLMUTEX flag is set then the database connection opens in the serialized threading mode unless single-thread was previously selected at compile-time or start-time. ] R-07450-54313:[The SQLITE_OPEN_SHAREDCACHE flag causes the database connection to be eligible to use shared cache mode, regardless of whether or not shared cache is enabled using sqlite3_enable_shared_cache(). ] R-04974-06543:[The SQLITE_OPEN_PRIVATECACHE flag causes the database connection to not participate in shared cache mode even if it is enabled. ]

R-40858-03003:[The fourth parameter to sqlite3_open_v2() is the name of the sqlite3_vfs object that defines the operating system interface that the new database connection should use. ] R-51885-22945:[If the fourth parameter is a NULL pointer then the default sqlite3_vfs object is used. ]

R-38255-01123:[If the filename is ":memory:", then a private, temporary in-memory database is created for the connection. ] R-02452-55255:[This in-memory database will vanish when the database connection is closed. ] Future versions of SQLite might make use of additional special filenames that begin with the ":" character. It is recommended that when a database filename actually does begin with a ":" character you should prefix the filename with a pathname such as "./" to avoid ambiguity.

R-02552-35840:[If the filename is an empty string, then a private, temporary on-disk database will be created. ] R-03805-18240:[This private database will be automatically deleted as soon as the database connection is closed. ]

URI Filenames

R-35840-33204:[If URI filename interpretation is enabled, and the filename argument begins with "file:", then the filename is interpreted as a URI. ] R-24124-56960:[URI filename interpretation is enabled if the SQLITE_OPEN_URI flag is set in the fourth argument to sqlite3_open_v2(), or if it has been enabled globally using the SQLITE_CONFIG_URI option with the sqlite3_config() method or by the SQLITE_USE_URI compile-time option. ] As of SQLite version 3.7.7, URI filename interpretation is turned off by default, but future releases of SQLite might enable URI filename interpretation by default. See "URI filenames" for additional information.

URI filenames are parsed according to RFC 3986. R-06842-00595:[If the URI contains an authority, then it must be either an empty string or the string "localhost". ] R-17482-00398:[If the authority is not an empty string or "localhost", an error is returned to the caller. ] R-45981-25528:[The fragment component of a URI, if present, is ignored. ]

R-62557-09390:[SQLite uses the path component of the URI as the name of the disk file which contains the database. ] R-28659-11035:[If the path begins with a '/' character, then it is interpreted as an absolute path. ] R-46234-61323:[If the path does not begin with a '/' (meaning that the authority section is omitted from the URI) then the path is interpreted as a relative path. ] R-20051-05832:[On windows, the first component of an absolute path is a drive specification (e.g. "C:"). ]

The query component of a URI may contain parameters that are interpreted either by SQLite itself, or by a custom VFS implementation. SQLite and its built-in VFSes interpret the following query parameters:

R-63472-46769:[Specifying an unknown parameter in the query component of a URI is not an error. ] Future versions of SQLite might understand additional query parameters. See "query parameters with special meaning to SQLite" for additional information.

URI filename examples

URI filenames Results
file:data.db Open the file "data.db" in the current directory.
file:/home/fred/data.db
file:///home/fred/data.db
file://localhost/home/fred/data.db
Open the database file "/home/fred/data.db".
file://darkstar/home/fred/data.db An error. "darkstar" is not a recognized authority.
file:///C:/Documents%20and%20Settings/fred/Desktop/data.db Windows only: Open the file "data.db" on fred's desktop on drive C:. Note that the %20 escaping in this example is not strictly necessary - space characters can be used literally in URI filenames.
file:data.db?mode=ro&cache=private Open file "data.db" in the current directory for read-only access. Regardless of whether or not shared-cache mode is enabled by default, use a private cache.
file:/home/fred/data.db?vfs=unix-dotfile Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" that uses dot-files in place of posix advisory locking.
file:data.db?mode=readonly An error. "readonly" is not a valid option for the "mode" parameter.

R-27458-04043:[URI hexadecimal escape sequences (%HH) are supported within the path and query components of a URI. ] A hexadecimal escape sequence consists of a percent sign - "%" - followed by exactly two hexadecimal digits specifying an octet value. R-52765-50368:[Before the path or query components of a URI filename are interpreted, they are encoded using UTF-8 and all hexadecimal escape sequences replaced by a single byte containing the corresponding octet. ] If this process generates an invalid UTF-8 encoding, the results are undefined.

Note to Windows users: The encoding used for the filename argument of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever codepage is currently defined. Filenames containing international characters must be converted to UTF-8 prior to passing them into sqlite3_open() or sqlite3_open_v2().

Note to Windows Runtime users: The temporary directory must be set prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various features that require the use of temporary files may fail.

See also: sqlite3_temp_directory

See also lists of Objects, Constants, and Functions.