on 3/5/06 9:34 AM, Gary Edge at [EMAIL PROTECTED] wrote: > I'm inclined to created the database and it's tables needed for my > app through SQL statements. The docs touch on the fact that a > REALSQLDatabase can be created with the Project .Add. Database > submenu and designed with a graphical user interface. This process > wants to created a physical file at the time of design. > > My questions are: Can I delete this file and create the database as > needed programmically from the schema data saved in the project or is > this file the model from which the schema data is derived? This would > mean the file would need to be bundled/packaged with the app. > > I'd like to be able to refer to this GUI designed model to create > databases 'on-the-fly' without the need of the physical file. The > docs don't explain this clearly.
You can't. That database becomes an element of the project and it is opened when the app is launched. Unfortunately the IDE doesn't let you export the SQL used to make the database. I use http://www.sqlabs.net/sqlitemanager.php because it lets me export the SQL statements needed to make a database. Chris _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
