Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions guides/databases/cdl-to-ddl.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ code --diff _out/c/sqlite.sql _out/c/h2.sql
> [!tip] CDS models are database-agnostic
> CDS models are designed to be database-agnostic, allowing you to switch between different databases with minimal changes. The `--dialect` option helps you see how your models translate to different database-specific DDLs. \

Expressions in CDS models are _not_ treated in a database-agnostic way. The compiler does not rewrite them into database-specific equivalents. Instead, it carries them over directly into the DDL. Ensure that any expression you write in your CDS model works across all databases you use. For more information, see [Database-Specific Models](#database-specific-models).


### Dialects by `cds env` Profiles

Expand Down
Loading