Hi
Mark,
Yes
this is correct when using the BDE. (as far as I know) Interbase must be
connected by an Alias. You could use the IB components and then you can
specify a filename to open.
Alternatively you could create dialog that creates a
temp alias in the BDE which points to the Interbase db
selected.
var
MyList: TStringList;
begin MyList := TStringList.Create; try with MyList do begin Add('SERVER NAME=IB_SERVER:/PATH/DATABASE.GDB'); Add('USER NAME=MYNAME'); end; Session1.AddAlias('NewIBAlias', 'INTRBASE', MyList); finally MyList.Free; end; end; Thanks,
David
Smith.
|
- [DUG]: Connecting to Interbase Mark Howard
- Re: [DUG]: Connecting to Interbase David Smith
- Re: [DUG]: Connecting to Interbase Mark Howard
- RE: [DUG]: Connecting to Interbase James Low
- Re: [DUG]: Connecting to Interbase Mark Howard
- RE: [DUG]: Connecting to Interbase Willie
- RE: [DUG]: Connecting to Interbase James Low
- Re: [DUG]: Connecting to Interbase Mark Howard
- Re: [DUG]: Connecting to Interbase Mark Howard
- RE: [DUG]: Connecting to Interbase James Low
- RE: [DUG]: Connecting to Interbase Willie
- Re: [DUG]: Connecting to Interbase Mark Howard