for example i have some stuff in list. i have 2 types of values. numbers and string. numbers are integers only. strings are not only characters but i have /, ?, etc. (like web links).
example:
listNumbers, listNames and listL are the same size
with this code i always get error
any idea?
thanks
p.s. Logging of above statement gives correct string for inserting
example:
listNumbers, listNames and listL are the same size
B4X:
For i = 0 To listNumbers.Size - 1
sql1.ExecNonQuery($"INSERT INTO lTest VALUES(2, ${listNumbers.Get(i)}, ${listNames.Get(i)}, 1, ${listL.Get(i)}, 1)"$)
with this code i always get error
B4X:
(near "kolo": syntax error (code 1): , while compiling: INSERT INTO lTest VALUES(2, 1, kolo1 - kolo2, 1, /456/234/44?xx=2, 1))
any idea?
thanks
p.s. Logging of above statement gives correct string for inserting