Subject Re: [IBO] Creating multiple GDB files with ib_connection.CreateDatabase
Author Jason Wharton
Instead of using this method. Attach a TIB_DSQL component to the connection
and execute your 'CREATE DATABASE' through it. This way you have full
control.

You can also use a TIB_Script component too.

Regards,
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com


----- Original Message -----
From: "Leos Urban" <leos.urban@...>
To: <IBObjects@yahoogroups.com>
Sent: Thursday, June 07, 2001 12:32 AM
Subject: [IBO] Creating multiple GDB files with ib_connection.CreateDatabase


> Hi,
> I tested creating of DB with ib_connection.CreateDatabase().
> It worked fine but I need create more GDB files.
>
> As with the following SQL statement:
>
> create database "ibodemo0.gdb"
> PAGE_SIZE=4096
> LENGTH 497500 FILE "ibodemo1.gdb"
> LENGTH 497500 FILE "ibodemo2.gdb"
> default character set WIN1250;
>
> In IBO help are informations about Params property but it does not work
for
> me.
>
> IBO 3.6 & Delphi 5 Pro.
>
> Thanks
> Leos