Skip to content

Commit 00d52a8

Browse files
committed
SQLite 3.46.0.
1 parent 94fb25e commit 00d52a8

File tree

15 files changed

+100
-590
lines changed

15 files changed

+100
-590
lines changed

embed/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Embeddable Wasm build of SQLite
22

3-
This folder includes an embeddable Wasm build of SQLite 3.45.3 for use with
3+
This folder includes an embeddable Wasm build of SQLite 3.46.0 for use with
44
[`github.com/ncruces/go-sqlite3`](https://pkg.go.dev/github.com/ncruces/go-sqlite3).
55

66
The following optional features are compiled in:
@@ -10,6 +10,7 @@ The following optional features are compiled in:
1010
- [R*Tree](https://sqlite.org/rtree.html)
1111
- [GeoPoly](https://sqlite.org/geopoly.html)
1212
- [soundex](https://sqlite.org/lang_corefunc.html#soundex)
13+
- [stat4](https://sqlite.org/compile.html#enable_stat4)
1314
- [base64](https://github.com/sqlite/sqlite/blob/master/ext/misc/base64.c)
1415
- [decimal](https://github.com/sqlite/sqlite/blob/master/ext/misc/decimal.c)
1516
- [ieee754](https://github.com/sqlite/sqlite/blob/master/ext/misc/ieee754.c)

embed/exports.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ sqlite3_collation_needed_go
3636
sqlite3_column_blob
3737
sqlite3_column_bytes
3838
sqlite3_column_count
39+
sqlite3_column_database_name
3940
sqlite3_column_decltype
4041
sqlite3_column_double
4142
sqlite3_column_int64
4243
sqlite3_column_name
44+
sqlite3_column_origin_name
45+
sqlite3_column_table_name
4346
sqlite3_column_text
4447
sqlite3_column_type
4548
sqlite3_column_value

embed/sqlite3.wasm

26.4 KB
Binary file not shown.

sqlite3/busy_timeout.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This patch allows Go to handle (and interrupt) sqlite3_busy_timeout.
33
--- sqlite3.c.orig
44
+++ sqlite3.c
5-
@@ -181581,7 +181581,7 @@
5+
@@ -181614,7 +181614,7 @@
66
if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT;
77
#endif
88
if( ms>0 ){

0 commit comments

Comments
 (0)