Dancer-Plugin-SimpleCRUD
Dancer-Plugin-SimpleCRUD copied to clipboard
Quick and effortless CRUD (create/read/update/delete) operations based on database tables
Sadly, Dancer::Plugin::SimpleCRUD is currently D1-only. I very much want to make it work with Dancer2, but just haven't had the time to spend on it yet - my spare time...
See #104
If I have a two tables and a simple_crud interface like: ``` create table things ( id int, name varchar, category_id int); create table categories ( id int, name varchar,...
It would be great if this module could support composite primary keys. For example: key_column => [qw/key_1 key_2 key_3/]; I have a few tables I can't use this module for...
If you have a table with a foreign key and a name column defined, it would be nice for the filter for that column in the filter to give you...
show the html table from /table/view/:id route below the "are you sure you want to delete this row?" question. recorded here for tracking.
At first, I'd like to say that SimpleCRUD is a great solution for quick CRUD tasks, especially as an alternative for popular ways of easy sharing of structured data (like...
for consistency. recorded here for tracking.
Right now when "adding" a new row it attempts to insert a null value for the primary key. This works in MySQL when auto_increment is used. I would like to...