Skip to content

Commit d11fd08

Browse files
authored
clarify special in-memory URL for sqlite (#2051)
Attempting to add some explicit configuration for an in-memory sqlite database I encountered this inconsistency. In other places in the docs `:memory:` is used. `memory` did not work for me as it supposedly expects a plain file named `memory`. Hence suggesting this change.
1 parent c628de1 commit d11fd08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The afore-mentioned packages use `cds-plugin` techniques to automatically config
6969
{"cds":{
7070
"requires": {
7171
"db": {
72-
"[development]": { "kind": "sqlite", "impl": "@cap-js/sqlite", "credentials": { "url": "memory" } },
72+
"[development]": { "kind": "sqlite", "impl": "@cap-js/sqlite", "credentials": { "url": ":memory:" } },
7373
"[production]": { "kind": "hana", "impl": "@cap-js/hana", "deploy-format": "hdbtable" }
7474
}
7575
}

0 commit comments

Comments
 (0)