mirror of
https://github.com/appy-one/acebase.git
synced 2026-05-25 06:02:14 -06:00
[GH-ISSUE #12] Sqlite3 not working #12
Labels
No labels
IndexedDB
browser
bug
dependencies
documentation
duplicate
enhancement
feature request
indexes
indexes
invalid
pull-request
query
question
transaction logging
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/acebase#12
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @paradis-A on GitHub (Feb 26, 2021).
Original GitHub issue: https://github.com/appy-one/acebase/issues/12
Originally assigned to: @appy-one on GitHub.
sqlite3 not creating .sqlite3 file, only .acebase with data.db in it.
{ "name": "acesqlite3", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "acebase": "^1.0.8", "sqlite3": "^5.0.2" } }@paradis-A commented on GitHub (Feb 26, 2021):
console
___ ______ / _ \ | ___ \ / /_\ \ ___ ___| |_/ / __ _ ___ ___ | _ |/ __/ _ \ ___ \/ _/ |/ _| | | | (| __/ |/ / (| _ \ /
_| |_/___/ _,|/_|
realtime database
[mydb] Database "mydb" details:
[mydb] - Type: AceBase binary
[mydb] - Record size: 128
[mydb] - Page size: 1024
[mydb] - Max inline value size: 50
[mydb] - Root record address: 0, 0
[mydb] KIT read, 0 keys indexed
[mydb] FST read, 0 pages allocated, 0 free ranges
[mydb] Node "/" is being created
[mydb] Node "/" saved at address 0,0 - 1 addresses, 4 bytes written in 1 chunk(s)
ready
`
@appy-one commented on GitHub (Feb 26, 2021):
You should add the
SQLiteStorageSettingsto thestorageproperty of the settings you are passing to theAceBaseconstructor.The correct syntax is:
@paradis-A commented on GitHub (Feb 26, 2021):
Thanks for the quick response. now it's working.