Thank you!
We use GPT-4o to generate database schema creation scripts for different database dialects.
Basically, we wanted to add the option to export the db schema to any type of database (for easy Migration for example from MySQL to PostgreSQL or from SQLite to MariaDB). First, we tried to implement that logic, after getting into trouble with too many different edge cases and dialect differences between different databases we decided to leverage AI in order to achieve that.
yardstick|1 year ago
So you identified all the issues in your code generation, decided instead of fixing them to use ChatGPT instead, and trust that ChatGPT did it correctly?
Are you saving much effort? Are you providing an accurate, bug free experience for all the SQL databases you claim to support?