>>81527888"Using a program"
This implies you're using a tool or software that can:
Parse the plain-English descriptions of facts
Automatically generate a normalized database schema
There are tools that can take a structured list of English facts and build the schema from it (some use natural language processing or strict templates).
"And generate a CRUDL user interface for the database"
CRUDL stands for:
Create
Read
Update
Delete
List
This is the full set of operations you'd expect in a user interface for managing data.
So, the program would also:
Automatically generate web forms, tables, and views
Allow users to interact with the data (e.g., add customers, view orders, update products, delete items)
"You can generate whole apps without AI"
This means that:
No AI is required for this process
The system is rule-based or template-driven
As long as you follow the expected format, the tooling can generate an entire working app from the facts and schema
This is often used in low-code/no-code platforms, model-driven development, or domain-specific languages (DSLs).
Summary
The statement means you can:
Describe your data and relationships using simple, structured English.
Use a program to automatically turn that into a normalized database design.
Auto-generate a user interface for creating, reading, updating, deleting, and listing that data.
Do all of this without needing AI - just by following rules or templates.