Creating a Database using DBExpress in Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:16:33Z http://stackoverflow.com/feeds/question/423808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/423808/creating-a-database-using-dbexpress-in-delphi 1 Creating a Database using DBExpress in Delphi? Steve 2009-01-08T10:31:06Z 2009-01-08T11:00:36Z <p>I need to create a Firebird Database programmatically using DBExpress. I have done this for SQL server, by first connecting to Master, then passing in the script for Create to a query, but with Firebird I have a little chicken and egg problem.</p> http://stackoverflow.com/questions/423808/creating-a-database-using-dbexpress-in-delphi/423871#423871 3 Answer by Harriv for Creating a Database using DBExpress in Delphi? Harriv 2009-01-08T10:58:27Z 2009-01-08T10:58:27Z <p>Duplicate question: <a href="http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx">http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx</a></p> http://stackoverflow.com/questions/423808/creating-a-database-using-dbexpress-in-delphi/423877#423877 2 Answer by birger for Creating a Database using DBExpress in Delphi? birger 2009-01-08T11:00:36Z 2009-01-08T11:00:36Z <p>I got a good tip from a collegue that created some code for the Freepascal project. It doesn't use DB express, but according to him it is the only way to create a database with code. This code is based on the InterBase manual, and uses a call from the gdslib / fbclient dll:</p> <pre><code>procedure TIBConnection.CreateDB; var ASQLDatabaseHandle, ASQLTransactionHandle : pointer; CreateSQL : String; pagesize : String; begin CheckDisConnected; {$IfDef LinkDynamically} InitialiseIBase60; {$EndIf} ASQLDatabaseHandle := nil; ASQLTransactionHandle := nil; CreateSQL := 'CREATE DATABASE '; if HostName &lt;&gt; '' then CreateSQL := CreateSQL + ''''+ HostName+':'+DatabaseName + '''' else CreateSQL := CreateSQL + '''' + DatabaseName + ''''; if UserName &lt;&gt; '' then CreateSQL := CreateSQL + ' USER ''' + Username + ''''; if Password &lt;&gt; '' then CreateSQL := CreateSQL + ' PASSWORD ''' + Password + ''''; pagesize := params.Values['PAGE_SIZE']; if pagesize &lt;&gt; '' then CreateSQL := CreateSQL + ' PAGE_SIZE '+pagesize; if isc_dsql_execute_immediate(@FStatus[0],@ASQLDatabaseHandle,@ASQLTransactionHandle,length(CreateSQL),@CreateSQL[1],Dialect,nil) &lt;&gt; 0 then CheckError('CreateDB', FStatus); if isc_detach_database(@FStatus[0], @ASQLDatabaseHandle) &lt;&gt; 0 then CheckError('CreateDB', FStatus); {$IfDef LinkDynamically} ReleaseIBase60; {$EndIf} end; </code></pre> <p>The trick is the isc_dsql_execute_immediate function. I hope this code helps you. Here are the links to the Freepascal source files where this code comes from:</p> <p><a href="http://svn.freepascal.org/cgi-bin/viewvc.cgi/tags/release_2_2_2/packages/fcl-db/src/sqldb/interbase/ibconnection.pp?revision=11487&amp;view=markup" rel="nofollow">Unit containing CreateDB function</a></p> <p><a href="http://svn.freepascal.org/cgi-bin/viewvc.cgi/tags/release_2_2_2/packages/ibase/src/ibase60.inc?revision=11487&amp;view=markup" rel="nofollow">Unit containing API call isc_dsql_execute_immediate</a></p>