Re: DBD::CSV data types

2009-10-09 Thread Robert Roggenbuck
You will find the "supported" data-types in SQL::Dialiects::CSV of the SQL::Statement package. There in no POD, but the section [VALID DATA TYPES] lists all possible types. DATE is unfortunately not there (DBD::CSV 0.22). Hope that helps Robert -- larry s schrieb: Does anyone know why the fol

DBD::CSV data types

2009-10-08 Thread larry s
Does anyone know why the following fails with: "SQL ERROR: 'DATE' is not a recognized data type!" ? I cannot seem to find valid data types. use DBD::CSV; use DBI; my $table = "csvtest"; my $dbh = DBI->connect("DBI:CSV:f_dir=/home/lsturtz/perl/")     or die "Cannot connect: " . $DBI::errstr; my