On Fri, 2007-04-06 at 13:22 -0700, Mike Johnston wrote: > Hi, > Is it possible to have memory databases located at a specific memory > address? I have a battery backed memory I'd like to store specific > information apart from the main database.
Not really possible at the moment. An in-memory database will be trashed when the database connection is closed, even if the memory it was using was persistent. I'm guessing that's probably not what you're after, right? Maybe your operating system can mount the memory as a file-system and then you can create a database in that file-system? Dan. ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

