Direction
Options
SQL DDLSQL
Entity classJAVA
Frequently Asked Questions
How do I use DDL ↔ Entity?
Step 2 - pick the target language and SQL dialect. Step 3 - toggle ORM annotations, Lombok, and column comments as needed, and fill in the package or namespace.
What can DDL ↔ Entity do?
Typical scenarios: Back-end developers turning DBA-provided DDL into JPA / Entity Framework / GORM entity classes; front-end and full-stack teams generating strongly-typed TypeScript models directly from database schemas; data engineers…
Is my data private when I use DDL ↔ Entity?
Privacy: Parsing and code generation both run entirely in your browser; no DDL or entity code is uploaded to any server, so it is safe to use with schemas that contain business-sensitive table or column names. Privacy: Parsing and code generation both run entirely in your browser; no DDL or entity code is uploaded to…
What technical details should I know about DDL ↔ Entity?
Technical notes: The DDL parser understands common column definitions - VARCHAR(n) , DECIMAL(p,s) , BIGINT , TINYINT(1) , DATETIME , JSON and so on - and normalises them to a language-agnostic type set. Technical notes: The DDL parser understands common column definitions - VARCHAR(n) , DECIMAL(p,s) , BIGINT…