From: Frode L. <fr...@li...> - 2004-01-19 14:32:34
|
Thanks to both Sander and Carlos, I got it working :) Now I am pondering one thing. Can anyone see a reason why the following query is successful; sql = "CREATE TABLE tokens (f1 varchar(10), token varchar(10));"; while the one below doesn't work - only difference is varchar => int sql = "CREATE TABLE tokens (f1 int(10) NOT NULL, token VARCHAR(50));"; I get a Dynamic SQL Error code = -104 Token unknown ( Anyone? Frode |