The data is inserted, I can see the values on the mysql command line (or via query browser). The problem is the subsequent list_all that is returning the entire set minus the newly created data. This is what led me to think it was a cache-ing issue.
Also, the list_all is doing a select query so again this could very well be a cache-ing issue:
Below code comes from list_all
my $objects = $dbh->selectall_arrayref("SELECT $columns FROM $table OR
+DER BY $order", {Slice=>{}}, @column_values);
|