I have following phonegap sqlite insertion statement:
tx.executeSql('insert into "'+gAppConfig.configTable+'" (key , value) values("uniqueId","'+uniqueId+'")' , [] , querySuccess, errorQuery);
Both the columns are text data-type, but the insert query is not working. uniqueId is a random 8 character string like 'e72361c6'. Strange thing is when i directly insert "e7231c6", it works. Why is it not working with variable. One more thing to note here is that the random string has been generated by decrypting the value stored in server-db. I am decrpyting and getting the 8-bit random string on the server and decrypted value is then sent to the device, stored in a variable and inserted in the db which is where the problem occurs. When i alert the string just before insertion, it shows correct 8 character string. On the other hand, if i don't decrypt and simply send the 8 character string from the server, insertion happens successfully. May be it has something to do with encode/decode string format. Any help is appreciated.
