I'm trying to import data using the basic script file(saved as script_file.txt):
create gdb FRIENDS into "friends.dbg"
create node PEOPLE
create attribute PEOPLE.ID ID string unique
create attribute PEOPLE.NAME string indexed
create attribute PEOPLE.AGE integer basic default 0
load nodes "people.csv"
columns ID, NAME, *, AGE
into PEOPLE
fields terminated ;
from 1
log "people.csv.log"
When I run this file using the following command the parser fails.
java -cp sparkseejava.jar com.sparsity.sparksee.script.ScriptParser script_file.txt false
The generated log file(given in the .cfg) does not seem to report an issue.