Is it possible to create databases programmatically using DBX? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T02:29:52Zhttp://stackoverflow.com/feeds/question/400114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx3Is it possible to create databases programmatically using DBX?Erick Sasse2008-12-30T12:03:47Z2009-06-05T12:44:16Z
<p>Looks like the TSQLConnection only connects to existing databases, and I could not find another component that allows me to send commands to the database server.</p>
<p>I'm using Delphi 2009 with Firebird and MSSQL.</p>
<p>One idea that came was to connect to a system database (master or tempdb in MSSQL for example) and then send create commands to the server. This could be an option for MSSQL, but I'm not sure for Firebird.</p>
<p>I'm also aware of the new DBX metadata in Delphi 2009, but I couldn't find a way to create databases using it. All examples I've found is to modify existing databases.</p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/400203#400203-2Answer by dmajkic for Is it possible to create databases programmatically using DBX?dmajkic2008-12-30T13:03:54Z2008-12-30T13:03:54Z<p>You can execute "CREATE DATABASE ..." on both databases with standard TSQLQuery. </p>
<p>Note that syntax differes between these two. Since dbx is lightweight lib, this SQL and DB specific action probbably will never be fully supported. It leaves you with SQL. </p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/400400#400400-3Answer by Philippe Grondier for Is it possible to create databases programmatically using DBX?Philippe Grondier2008-12-30T14:33:13Z2008-12-30T14:33:13Z<p>You can send a "CREATE DATABASE" script through any connection (ADO, OLEDB, ODBC, etc) opened on any server (or even ms-access files) as long as it follows the specific server DDL syntax.</p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/401122#4011222Answer by Nick Hodges for Is it possible to create databases programmatically using DBX?Nick Hodges2008-12-30T19:05:23Z2008-12-30T19:05:23Z<p>Yes, you can. dbExpress now includes a powerful set of meta-data classes for doing just that.</p>
<p>Steve Shaughnessy gives a good introduction here:</p>
<p><a href="http://blogs.codegear.com/steveshaughnessy/2007/09/07/38810" rel="nofollow">http://blogs.codegear.com/steveshaughnessy/2007/09/07/38810</a></p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/955631#955631-2Answer by codervish for Is it possible to create databases programmatically using DBX?codervish2009-06-05T12:44:16Z2009-06-05T12:44:16Z<p>With Delphi 2007/2009 comes DBX4. You may use the low level structures there to create database programmatically. Look in <code>dbxcommons.pas</code> </p>