You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: guides/databases-sqlite.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -319,8 +319,8 @@ The following is an overview of advanced features supported by the new database
319
319
320
320
The new database service provides **full support** for all kinds of [path expressions](../cds/cql#path-expressions), including [infix filters](../cds/cql#with-infix-filters) and [exists predicates](../cds/cql#exists-predicate). For example, you can try this out with *[cap/samples](https://github.com/sap-samples/cloud-cap-samples)* as follows:
321
321
322
-
```sh
323
-
cds repl --profile better-sqlite
322
+
```js
323
+
// $ cds repl --profile better-sqlite
324
324
var { server } = await cds.test('bookshop'), { Books, Authors } = cds.entities
@@ -397,6 +397,7 @@ The new database services guarantee identical behavior of these logic operators:
397
397
398
398
In particular, the translation of `!=` to `IS NOT` in SQLite — or to `IS DISTINCT FROM` in standard SQL, or to an equivalent polyfill in SAP HANA — greatly improves the portability of your code.
399
399
400
+
> These operators are available for runtime queries, but not in CDS files.
400
401
401
402
402
403
### Standard Functions {.impl .node}
@@ -419,6 +420,7 @@ A specified set of standard functions is now supported in a **database-agnostic*
419
420
*`year``month`, `day`, `hour`, `minute`, `second` — return parts of a datetime
420
421
421
422
> <sup>1</sup> Argument `n` is optional.
423
+
> These functions are only supported within runtime queries, but not in CDS files.
422
424
423
425
The database service implementation translates these to the best-possible native SQL functions, thus enhancing the extent of **portable** queries.
424
426
@@ -812,4 +814,4 @@ Having said this, there can indeed be scenarios where SQLite might also be used
812
814
813
815
::: warning
814
816
SQLite only has limited support for concurrent database access due to its very coarse lock granularity. This makes it badly suited for applications with high concurrency.
0 commit comments