I've got a small project that I would like to attempt to do in Haskell. Given a set of delimited data in the following format:
1|Star Wars: Episode IV - A New Hope|1977|Action,Sci-Fi|George Lucas 2|Titanic|1997|Drama,History,Romance|James Cameron
In Haskell, how can I generate sql insert statements in this format?
insert into table values(1,"Star Wars: Episode IV - A New Hope",1977","Action,Sci-Fi","George Lucas",0); insert into table values(2,"Titanic",1997,"Drama,History,Romance","James Cameron",0);
To simplify the problem, let's allow for a parameter to tell which columns are text or numeric. (e.g. 0,1,0,1,1)
Here's a solution in Perl. Now I'd like to add Haskell to my toolkit.
my @ctypes=qw/0 1 0 1 1/;
while(<>) {
chop;
@F=split('\|', $_);
print "insert into table values(";
foreach my $col (@F) {
my $type=shift(@ctypes);
print ($type == 1 ? '"'.$col.'"' : $col);
print ",";
}
print "0);\n";
}