Thread Newbie -Keine Ausgabe bei mysql-query (62 answers)
Opened by Gast at 2009-01-14 01:45

nepos
 2009-01-15 13:09
#118016 #118016
User since
2005-08-17
1420 Artikel
BenutzerIn
[Homepage] [default_avatar]
Quote
Note that many drivers have no way of knowing what data sources might be available for it. These drivers
return an empty or incomplete list or may require driver-specific attributes.

Denke mal, das wird dein Problem sein. Kleines Beispiel:
Code: (dl )
1
2
3
4
5
perl -MDBI -e '
@drivers = DBI->available_drivers;
for (@drivers) {
print join("\n", DBI->data_sources($_));
}'


Das liefert bei mir grade mal Datasources fuer die Treiber DBI:DBM und DBI:File.
Bei mir ist auch Pg für PostgreSQL und der Treiber für mysql installiert.

View full thread Newbie -Keine Ausgabe bei mysql-query