aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2023-01-27 05:17:10 +0000
committerstephan <stephan@noemail.net>2023-01-27 05:17:10 +0000
commitca86a5351e39bbdba0ec38ed06d28a1a2dca504f (patch)
tree9a89e9ffd498deb8e8e92ea5620f9cd32da92014 /ext/wasm
parent0945197a39896ec49ecfffd8f7b10ecc844020ac (diff)
downloadsqlite-ca86a5351e39bbdba0ec38ed06d28a1a2dca504f.tar.gz
sqlite-ca86a5351e39bbdba0ec38ed06d28a1a2dca504f.zip
Cherrypick [fa784101775b7|emscripten ticket #18609 workaround] into trunk.
FossilOrigin-Name: 9a26fae545b9c97129893b83ff97e62b1c477eccd1379af1dce4a3cc4fa9f932
Diffstat (limited to 'ext/wasm')
-rw-r--r--ext/wasm/api/sqlite3-api-worker1.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/wasm/api/sqlite3-api-worker1.js b/ext/wasm/api/sqlite3-api-worker1.js
index 250b6fcdf..58b9b0091 100644
--- a/ext/wasm/api/sqlite3-api-worker1.js
+++ b/ext/wasm/api/sqlite3-api-worker1.js
@@ -1,4 +1,4 @@
-/*
+/**
2022-07-22
The author disclaims copyright to this source code. In place of a
@@ -10,12 +10,12 @@
***********************************************************************
- This file implements the initializer for the sqlite3 "Worker API
- #1", a very basic DB access API intended to be scripted from a main
- window thread via Worker-style messages. Because of limitations in
- that type of communication, this API is minimalistic and only
- capable of serving relatively basic DB requests (e.g. it cannot
- process nested query loops concurrently).
+ This file implements the initializer for SQLite's "Worker API #1", a
+ very basic DB access API intended to be scripted from a main window
+ thread via Worker-style messages. Because of limitations in that
+ type of communication, this API is minimalistic and only capable of
+ serving relatively basic DB requests (e.g. it cannot process nested
+ query loops concurrently).
This file requires that the core C-style sqlite3 API and OO API #1
have been loaded.