Hello, I searched the internet for any solution about binding parameters to the SQL statement. I read something, that in WIN32ODBC, binding parameters is not supported. I have the following environment: W2K TS, Activestate Perl, WIN32ODBC driver. I use this statements: $sql = "insert into $tableName (KUNDENNUMMER) values (?)"; # ... while (<DATA>) { chomp; @field = split /;/; # ... $rc = $sth->execute($field[0]) || die("Can't execute statement: $sth::errstr"); # ... } Is there anywhere a perl guru, using DBI/ODBC driver under Win2K and operates on MS SQL server with success ? Many thanks for any help! Lothar -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]