Hi, thanks for answer !
Actually I am a programmer and I want to do what you've just described.
There's this csv export function in limesurvey. Basically I want the same result but json formatted. If I get this json then sending it to rails is a piece of cake.
since your answer I've found this :
www.cparker15.com/code/utilities/csv-to-json/
so Json equivalent of this :
"id","Complété","Dernière page vue","Langue de départ","Code","date du prelevement","nom ou numero","sexe","Age","AgHBs","AgHBc","AcHBs","AcBHs valeur"
"1","2012-01-29 09:17:07","2","fr","","2012-01-29","12456","Masculin","25","positif","positif","positif","999"
would be this
[
{
"id": "1",
"Complété": "2012-01-29 09:17:07",
"Dernière page vue": "2",
"Langue de départ": "fr",
"Code": "",
"date du prelevement": "2012-01-29",
"nom ou numero": "12456",
"sexe": "Masculin",
"Age": "25",
"AgHBs": "positif",
"AgHBc": "positif",
"AcHBs": "positif",
"AcBHs valeur": "999"
}
]
then I send via ajax to my rails app and it stores it automatically as an openstruct attribute of any model !
Would be great !