2015-12-01 19:44:58 +01:00
|
|
|
// Copyright (c) 2014 The btcsuite developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-11-10 01:31:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Package bdb implements an instance of walletdb that uses boltdb for the backing
|
|
|
|
datastore.
|
|
|
|
|
|
|
|
Usage
|
|
|
|
|
|
|
|
This package is only a driver to the walletdb package and provides the database
|
2019-10-02 19:14:59 +02:00
|
|
|
type of "bdb". The only parameters the Open and Create functions take is the
|
|
|
|
database path as a string, and an option for the database to not sync its
|
|
|
|
freelist to disk as a bool:
|
2014-11-10 01:31:38 +01:00
|
|
|
|
2019-10-02 19:14:59 +02:00
|
|
|
db, err := walletdb.Open("bdb", "path/to/database.db", true)
|
2014-11-10 01:31:38 +01:00
|
|
|
if err != nil {
|
|
|
|
// Handle error
|
|
|
|
}
|
|
|
|
|
2019-10-02 19:14:59 +02:00
|
|
|
db, err := walletdb.Create("bdb", "path/to/database.db", true)
|
2014-11-10 01:31:38 +01:00
|
|
|
if err != nil {
|
|
|
|
// Handle error
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
package bdb
|