We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you know if there's a way to export the schema from an SQLlite database ? Thank you :3
The text was updated successfully, but these errors were encountered:
Hey @loprima-l 👋
I believe there is, yes!
You can see all SQLite tables using sqlite_schema table:
sqlite_schema
SELECT * FROM sqlite_schema;
You can either scrape the output or at least get all table names and then inspect each table separately using the PRAGMA function:
PRAGMA
PRAGMA table_info(users)
@loprima-l are you up for a challenge to write an adapter? 😊
You'd need to write a script that generates a custom schema CSV file similar to this one: https://github.com/sqlhabit/sql_schema_visualizer/blob/main/schema.csv.template (need to have these columns: "table_schema","table_name","column_name","data_type","ordinal_position")
"table_schema","table_name","column_name","data_type","ordinal_position"
Sorry, something went wrong.
No branches or pull requests
Do you know if there's a way to export the schema from an SQLlite database ?
Thank you :3
The text was updated successfully, but these errors were encountered: