(sigil web demo db)
(sigil web demo db) - Database schema and CRUD operations
Manages a SQLite database of vinyl records with create, read, update, delete, search, and pagination support.
Exports
init-dbprocedureInitialize the database: create table and seed sample data.
list-recordsprocedureList records with pagination and optional search. Returns list of alist rows.
count-recordsprocedureCount records with optional search filter.
get-recordprocedureGet a single record by id.
create-recordprocedureCreate a new record from form params alist. Returns the new id.
update-recordprocedureUpdate a record by id from form params alist.
delete-recordprocedureDelete a record by id.