The MySQL object store uses the ID of the last inserted field. I'm looking into the feasibility of using sqlite as an object store (Sqlite is file-based like Gadfly, but does not load the entire database into memory). Sqlite does not have auto-incrementing columns, but it does have a unique, random row ID number. This number is not sequential. Does middle-kit rely on the ID number to be sequential?
The second problem is that sqlite ignores types and returns strings for everything. Is there a good spot in Middlekit that I could put a hook to convert the strings to the appropriate type? There's a way to do this in the sqlite wrapper, but it will be a bit cumbersome. Thanks ===== ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Kevin Dahlhausen [EMAIL PROTECTED] "Do or do not. There is no 'Try.' Yoda __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/ _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
