Skip to content

kawakami-o3/go-sqlite3-utils

Repository files navigation

go-sqlite-utils

Go Report Card Build Status

Pure Go Libraries for manipulating a SQLite file.

Installation

go get github.com/kawakami-o3/go-sqlite3-utils

Usage

Load the SQLite file, /tmp/test.db,

sqlite3utils.Load("/tmp/test.db")

Get the first value at the second row in the table, "person",

pages.Tables["person"].Entries[1].Datas[0].Value

Todo

  • Complicated file: Now, the parser can read wc.db of subversion.
  • Overflow page
  • Schema parser
  • Index page
  • Writer