0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2025-06-14 11:21:42 +00:00
Files
.github
_example
upgrade
.gitignore
.travis.yml
LICENSE
README.md
backup.go
backup_test.go
callback.go
callback_test.go
doc.go
error.go
error_test.go
sqlite3-binding.c
sqlite3-binding.h
sqlite3.go
sqlite3_context.go
sqlite3_func_crypt.go
sqlite3_func_crypt_test.go
sqlite3_go18.go
sqlite3_go18_test.go
sqlite3_libsqlite3.go
sqlite3_load_extension.go
sqlite3_load_extension_omit.go
sqlite3_opt_allow_uri_authority.go
sqlite3_opt_app_armor.go
sqlite3_opt_foreign_keys.go
sqlite3_opt_fts3_test.go
sqlite3_opt_fts5.go
sqlite3_opt_icu.go
sqlite3_opt_introspect.go
sqlite3_opt_json1.go
sqlite3_opt_secure_delete.go
sqlite3_opt_secure_delete_fast.go
sqlite3_opt_stat4.go
sqlite3_opt_unlock_notify.c
sqlite3_opt_unlock_notify.go
sqlite3_opt_unlock_notify_test.go
sqlite3_opt_userauth.go
sqlite3_opt_userauth_omit.go
sqlite3_opt_userauth_test.go
sqlite3_opt_vacuum_full.go
sqlite3_opt_vacuum_incr.go
sqlite3_opt_vtable.go
sqlite3_opt_vtable_test.go
sqlite3_other.go
sqlite3_solaris.go
sqlite3_test.go
sqlite3_trace.go
sqlite3_type.go
sqlite3_usleep_windows.go
sqlite3_windows.go
sqlite3ext.h
static_mock.go
go-sqlite3/sqlite3_opt_json1.go
Gert-Jan Timmer 420bfbcac8 fmt update
Fix: Placed all +build tags in the same location
Fix: Split CFLAGS, LDFLAGS into seperate lines for readability and lookup
Fix: Placed empty line between copyright comments and build tags for readability
Fix: Placed OS specfic cgo flags at the end if the cgo sections contains multiple lines.
2018-05-27 00:05:45 +02:00

14 lines
283 B
Go

// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
// +build sqlite_json sqlite_json1 json1
package sqlite3
/*
#cgo CFLAGS: -DSQLITE_ENABLE_JSON1
*/
import "C"