Mailinglisten-Archive |
habe all dies probiert: (psswrd, username und db-name hier für die diskussion geändert; db02.puretec.de ist der mysql-server von puretec, auf welcher die datenbank db1000 liegt) habe nirgendswo die syntax eines php-commands namens "mysql" gefunden -- soweit ich system() verstanden habe, system() is just like the C version of the function in that it executes the given command and outputs the result. If a variable is provided as the second argument, then the return status code of the executed command will be written to this variable... *********** EINS: <html> <body> <? $os = system("mysql -h 'db02.puretec.de' --password='abcdef' -u 'user2220' 'db1000.firmen' < daten.txt"); ?> <p> <H1>load process terminated!!!</h1> </body> </html> *********** ZWEI: <html> <body> <? $os = system("mysql -h 'db02.puretec.de' --password='abcdef' -u 'user2220' 'db1000.firmen' < 'daten.txt'"); ?> <p> <H1>load process terminated!!!</h1> </body> </html> *********** DREI: <html> <body> <? $os = system("mysql -h 'db02.puretec.de' --password='abcdef' -u 'user2220' 'firmen' < daten.txt"); ?> <p> <H1>load process terminated!!!</h1> </body> </html> *********** VIER: <html> <body> <? $os = system("mysql -h 'db02.puretec.de' --password='abcdef' -u 'user2220' 'firmen' < 'daten.txt'"); ?> <p> <H1>load process terminated!!!</h1> </body> </html> u.v.a..... keins hat funktioniert... arrrgh :(( habe auch mit LOAD INTO INFILE versucht, wobei ich da als input-file ein comma-delimmited erstellt habe... auch nix! bin heute wohl zu dumm.... ich gehe erstmal frustriert nach hause... würde mich sehr freuen, wenn jemand den blöden fehler aufdeckt, den ich mache... thx julian daniel --- *** Weitere Infos zur Mailingliste und MySQL unter http://www.4t2.com/mysql
php::bar PHP Wiki - Listenarchive