Hi,
I'm using DBD::MaxDB with Alexeys utf8-patch. The perl-program fails
with the following errormessage:
DBD::MaxDB::st execute failed: Conversion not supported for
parameter/column (1)
The relevant part of the perl-script is:
#$dbh->do("DROP TABLE test");
#$dbh->do("CREATE TABLE test(text LONG UNICODE)");
my $b = "INSERT INTO test(text) VALUES(?)";
my $c = "abc";
my $d = $dbh->prepare($b);
$d->bind_param(1, $c);
$d->execute();
The error-message seems to come from SQLDBC. I attached the sqldbctrace.
If i create the table with VARCHAR UNICODE, everything works fine. It
only fails for LONG UNICODE columns.
Greetings
Sven
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]