Create a Database directly on Network
Posted: 04.02.2008, 21:36
Hi all...
is it possible to create a Database directly in the Networkfolder ?
when i use the Property CreateNewDatabase and give as Folder for the new Database the local Folder from the Server i get a Error Message
not a Medium in Drive D:
Drive D: is on the Server a HardDrive
but Drive D: is on the local Computer a CD Drive.
...he want to create the Database local
all the Properties are correct....connect with existing Database works.
can you help ?
Firebird 2.0
[edit]
DBOrdnerL = D:\Daten\ -- local Drive on Server
DBDatei = DB.fdb
DBHost = Name of the Server
[/edit]
is it possible to create a Database directly in the Networkfolder ?
when i use the Property CreateNewDatabase and give as Folder for the new Database the local Folder from the Server i get a Error Message
not a Medium in Drive D:
Drive D: is on the Server a HardDrive
but Drive D: is on the local Computer a CD Drive.
...he want to create the Database local
all the Properties are correct....connect with existing Database works.
can you help ?
Firebird 2.0
[edit]
Code: Select all
Datenbank:= DBOrdnerL + DBDatei;
DMDB.ZConnection1.User:= 'SYSDBA';
DMDB.ZConnection1.Password:= 'masterkey';
DMDB.ZConnection1.Database:= DBOrdnerL + DBDatei;
DMDB.ZConnection1.HostName:= DBHost;
DMDB.ZConnection1.Properties.Add ('CreateNewDatabase=CREATE DATABASE ' +
QuotedStr(Datenbank) + ' USER ' + QuotedStr('SYSDBA') + ' PASSWORD ' + QuotedStr('masterkey') + ' PAGE_SIZE 4096');
DBDatei = DB.fdb
DBHost = Name of the Server
[/edit]