Jose Blanco wrote: > > Can I issue an alter statement to change the definition of a CSV table using >DBD::CSV? > > For example, > ALTER TABLE Collection ADD c varchar (20)
DBD::CSV doesn't currently support an ALTER statement. But since CSV files are just plain text files, you can accomplish the same thing by adding a comma and the name of the new column to the end of the first row of your file and thereafter DBD::CSV will recognize the column the same way it recognizes the other columns. -- Jeff
