Hallo Martin,
das mit dem host hat leider auch nix gebracht. Das ist die Stelle wo Zeos aussteigt:
Delphi-Quellcode:
{**
Gets a driver which accepts the specified url.
@param Url a database connection url.
@return a found driver or <code>null</code> otherwise.
}
function TZDriverManager.GetDriver(
const Url:
string): IZDriver;
var
I: Integer;
Current: IZDriver;
begin
Result :=
nil;
for I := 0
to FDrivers.Count - 1
do
begin
Current := FDrivers[I]
as IZDriver;
if Current.AcceptsURL(
Url)
then
begin
Result := Current;
Break;
end;
end;
end;
vielleicht hilft das ja. Die
URL zur Laufzeit ist:
'zdbc:sqlite-3:///E:\DelphiProjects\
db\main.db?UID=;PWD='
Viele Grüße + schonmal Danke für deine Bemühungen
Julian