Skip to content

Commit c3917dd

Browse files
bugwellerenejeglinskyjohannes-vogel
authored
docs(database): Be more explicit about operators/functions in CDS files (#632)
Co-authored-by: René Jeglinsky <[email protected]> Co-authored-by: Johannes Vogel <[email protected]>
1 parent a91c891 commit c3917dd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

guides/databases-sqlite.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ The following is an overview of advanced features supported by the new database
319319

320320
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:
321321

322-
```sh
323-
cds repl --profile better-sqlite
322+
```js
323+
// $ cds repl --profile better-sqlite
324324
var { server } = await cds.test('bookshop'), { Books, Authors } = cds.entities
325325
await INSERT.into (Books) .entries ({ title: 'Unwritten Book' })
326326
await INSERT.into (Authors) .entries ({ name: 'Upcoming Author' })
@@ -397,6 +397,7 @@ The new database services guarantee identical behavior of these logic operators:
397397

398398
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.
399399

400+
> These operators are available for runtime queries, but not in CDS files.
400401
401402

402403
### Standard Functions {.impl .node}
@@ -419,6 +420,7 @@ A specified set of standard functions is now supported in a **database-agnostic*
419420
* `year` `month`, `day`, `hour`, `minute`, `second` — return parts of a datetime
420421

421422
> <sup>1</sup> Argument `n` is optional.
423+
> These functions are only supported within runtime queries, but not in CDS files.
422424
423425
The database service implementation translates these to the best-possible native SQL functions, thus enhancing the extent of **portable** queries.
424426

@@ -812,4 +814,4 @@ Having said this, there can indeed be scenarios where SQLite might also be used
812814

813815
::: warning
814816
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.
815-
:::
817+
:::

0 commit comments

Comments
 (0)