marcominerva / DatabaseGPT

Query a database using natural language
https://databasegpt.azurewebsites.net/
MIT License
63 stars 13 forks source link

DatabaseGPT for SQLite #25

Closed nicolaparo closed 7 months ago

nicolaparo commented 11 months ago

DatabaseGPT currently supports scenarios where we have SqlServer or Postgre databases. It doesn't currently support the case of a different like SQLite, MySql, etc... The major difference between all these DBMS is mainly the dialect of the SQL language used in the database and the required drivers themselves.

The implementation for SQLitebe implemented in the project DatabaseGpt.SQLite, in a similar way to what was done for DatabaseGpt.SqlServer and DatabaseGpt.Npgsql