Hi everyone! I'm working on an IBM RPA Database training that involves creating a new table with SQLite to later insert information into it. I followed the course instructions to a T and after mapping a JSON file (that does have information) I get an error related to the INSERT command on the SQLite DB I created:
Error executing command at line 21: sqlExecute --connection ${connectionSQLite} --statement "INSERT INTO tbPeople (name, age, eyeColor, gender, company, email, phone, address)\r\nVALUES (\"${name}\", \"${age}\", \"${eyeColor}\", \"${gender}\", \"${company}\", \"${email}\", \"${phone}\", \"${address}\");"
Parameter 'connection' missing on command at line 21
But if I check my line 21 in the 'Script' tab the 'connection' parameter is there:
sqlExecute --connection ${connectionSQLite} --statement "INSERT INTO tbPeople (name, age, eyeColor, gender, company, email, phone, address)\r\nVALUES (\"${name}\", \"${age}\", \"${eyeColor}\", \"${gender}\", \"${company}\", \"${email}\", \"${phone}\", \"${address}\");"
I understand that SQLite works without installing anything, so I'm clueless as to what to do next - has anyone experienced something similar? Any guidance is more than welcomed. Thank you!
------------------------------
Alan Brian Mogliani
------------------------------