outlawdoug
Programmer
I am trying to query the database for info surrounding a specific barcode...
Select *
from micros.barcode_def
where barcode = '7331048109'
I am setting the sql command string like this
NOTE: strBarcode is user input from POS terminal.
strSQL = "Select * from micros.barocode_def where barcode = " + "'" + strBarcode + "'"
The interpreter gives me the error
"No ops on strings"
QUESTION: Is it not possible to concatenate in ISL?
Thanx, OutlawDoug
Select *
from micros.barcode_def
where barcode = '7331048109'
I am setting the sql command string like this
NOTE: strBarcode is user input from POS terminal.
strSQL = "Select * from micros.barocode_def where barcode = " + "'" + strBarcode + "'"
The interpreter gives me the error
"No ops on strings"
QUESTION: Is it not possible to concatenate in ISL?
Thanx, OutlawDoug