From ae9ea46503b3dfbf77a51838cf12c14f26f1d367 Mon Sep 17 00:00:00 2001 From: s441433 Date: Fri, 28 Dec 2018 22:14:23 +0100 Subject: [PATCH] Create main.go --- .../mattn/go-sqlite3/_example/vtable/main.go | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/github.com/mattn/go-sqlite3/_example/vtable/main.go diff --git a/src/github.com/mattn/go-sqlite3/_example/vtable/main.go b/src/github.com/mattn/go-sqlite3/_example/vtable/main.go new file mode 100644 index 0000000..aad8dda --- /dev/null +++ b/src/github.com/mattn/go-sqlite3/_example/vtable/main.go @@ -0,0 +1,38 @@ +package main + +import ( + "database/sql" + "fmt" + "log" + + "github.com/mattn/go-sqlite3" +) + +func main() { + sql.Register("sqlite3_with_extensions", &sqlite3.SQLiteDriver{ + ConnectHook: func(conn *sqlite3.SQLiteConn) error { + return conn.CreateModule("github", &githubModule{}) + }, + }) + db, err := sql.Open("sqlite3_with_extensions", ":memory:") + if err != nil { + log.Fatal(err) + } + defer db.Close() + + _, err = db.Exec("create virtual table repo using github(id, full_name, description, html_url)") + if err != nil { + log.Fatal(err) + } + + rows, err := db.Query("select id, full_name, description, html_url from repo") + if err != nil { + log.Fatal(err) + } + defer rows.Close() + for rows.Next() { + var id, fullName, description, htmlURL string + rows.Scan(&id, &fullName, &description, &htmlURL) + fmt.Printf("%s: %s\n\t%s\n\t%s\n\n", id, fullName, description, htmlURL) + } +}