I am a new user of IBDAC and would like to create a Firebird database programmatically. From searching your forums I came up with (After placing components IBCConnection and IBCScript on the form)
Code: Select all
IBCScript1.Connection := IBCConnection1;
IBCScript1.NoPreconnect := True;
IBCScript1.SQL.Text :=
'CREATE DATABASE ''D:\Data\test.fdb'' ' +
'USER ''SYSDBA'' PASSWORD ''masterkey'' PAGE_SIZE 16384 DEFAULT CHARACTER SET UTF8;';
IBCScript1.Execute;
Is there any documentation that could assist me in this?
Regards