Steve wrote: > Christopher Wyatt wrote: > >> Boy, some of us have a long, long wish list for certain things. I >> had been working on SQLite and FB... but that was a long time ago. >> I hope the developers will consider some way to use >> "CoreData" (SQLite) for desktop databases. I have a tiny demo named SQLite_proof_of_concept, which when built and run with FB5 outputs the following SQLite version: 3004000 Opening MyFirstDB DROP TABLE IF EXISTS memos; CREATE TABLE memos( task TEXT, priority INTEGER ); INSERT INTO memos VALUES( 'finish this demo', 10 ); INSERT INTO memos VALUES( 'drink beer', 100 ); Rows changed: 2 Support for SQLite could be extended if anyone thought it worthwhile. > I too would love to see this support for CoreData. <http://developer.apple.com/documentation/Cocoa/Conceptual/CoreData/Articles/cdBeforeYouStart.html > Robert P.