AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Datenbanken Delphi sqlite3 Zeos requested database driver not found -mal wieder
Thema durchsuchen
Ansicht
Themen-Optionen

sqlite3 Zeos requested database driver not found -mal wieder

Ein Thema von braini4c · begonnen am 14. Jan 2009 · letzter Beitrag vom 15. Jan 2009
Antwort Antwort
braini4c

Registriert seit: 26. Jun 2008
13 Beiträge
 
#1

Re: sqlite3 Zeos requested database driver not found -mal wi

  Alt 14. Jan 2009, 18:53
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
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 23:29 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz