[appengine-java] appcfg bulkuploading Listkey values from csv

2010-08-04 Thread Dani
Hi, i'm trying to upload to my app an entity with a field which is a list of keys. How can i do it? I tryed to separate it with comas and wrap it with double quotes, like: key,extensions,name,number 1,34,56,John Doe,699 And the config.yml: kind: Zone connector: csv connector_options:

Re: [appengine-java] appcfg bulkuploading Listkey values from csv

2010-08-04 Thread John Patterson
If you use this: http://code.google.com/p/remote-datastore/ you can upload Entities in a main(String[]) using the simple low-level API. If your data is in CSV format you'll need to parse the file lines to create your Entities. On 4 Aug 2010, at 16:51, Dani wrote: Hi, i'm trying to