Massimo and crew,
I am trying to use export_to_csv_file() on a rows object with the colnames
parameter on google app engine. it turns out that the method (in both
sql.py and the new dal.py) outputs the proper column names, but then outputs
data for every column in the table.
the culprit is on line 4741 of dal.py (from trunk):
for col in self.colnames:
should be
for col in colnames:
and then, so long as the user's colnames are in the format
'<table_name>.<field_name>' it works as desired (at least from my
perspective).
does this sounds correct? if so, do you mind adding it to trunk?
thanks!
christian