Last updated:
0 purchases
selecta
selecta #
A model that represents SQL Select queries, and tools to convert from SQL/JSON to the model and back
Try it out here. This example uses the arborio package to display the tree view.
You can do like this:
final selectStatement = toSelectStatement('SELECT id, name FROM Users');
print('Columns: ${selectStatement.select} From: ${selectStatement.from}');
copied to clipboard
Output
Columns: [ColumnReference (id), ColumnReference (name)] From: Users
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.