Hello

i use a db file per entreprise of user in my dancer app, i can get insert and update

but for delete it is not really works...:(

this how i do that the table have primary key name id

my $dbname           = "$UPLOAD/$entreprise/$entreprise.sqlite";
    database({ driver => 'SQLite', database => $dbname })->quick_delete('fournisseurs', {id => $idFourToDel} );


is someone with solution or same trouble

T.