Thread DBI-CSV: Syntax INSERT (2 answers)
Opened by Kean at 2007-07-23 19:15

Kean
 2007-07-23 19:15
#35571 #35571
User since
2004-08-18
463 Artikel
BenutzerIn

user image
Ich bin dabei ein Programm auf DBI-CSV umzustellen, verstehe aber die Syntax beim Einfügen von Datensätzen nicht.

Hier die Syntax, die auch funktioniert:

Code: (dl )
1
2
3
4
5
6
use DBI;
$dbh = DBI->connect("DBI:CSV:f_dir=.")
or die "Cannot connect: " . $DBI::errstr;
$dbh->do("INSERT INTO $table VALUES (?, ?)", undef,
2, "It's a string!");
$dbh->disconnect();


Habe meine Probleme mit dem Teil (?, ?)", undef,

Ich kenne das von SQL so:

Code: (dl )
"INSERT INTO $table (id,name) VALUES (1,'Kean')"


Aber für was steht das undef und die ?

View full thread DBI-CSV: Syntax INSERT