Hi, I'm am doing some experiments with creating a sync server to work with my upcoming release of a new version of KeyValueStore.
I'm testing the following MySQL Query on SQLFiddle (to see if it actually works before using it in B4X):
However, it keeps throwing an error. (See attached screenshot.)
I'm testing the following MySQL Query on SQLFiddle (to see if it actually works before using it in B4X):
B4X:
CREATE TABLE IF NOT EXISTS
Main (`TableName` TEXT, `KeyName` TEXT, `ValueObj` BLOB, PRIMARY KEY(`TableName`, `KeyName`))
REPLACE INTO
Main (TableName, KeyName, ValueObj)
VALUES("", "", "")
However, it keeps throwing an error. (See attached screenshot.)