This is the SQL query:
SQL1.ExecQuery2("SELECT CustSur,CustFore,Street,Broker,tktColour,tktNo,tktdate,Items,Cost,ID" _
& " FROM tbltickets WHERE CustSur LIKE ? AND CustFore LIKE ? ORDER BY CustSur,CustFore",ArrayAsString(txtCustSur.text, txtCustFore.text))
If I put in "be%" for CustSur I get (eg) "Beaumont" returned
If I put in "_be% , I get "Beaumont"
If I put in "%eau%, I get "Beaumont"
If I put in %e%, I get nothing.
Am I just exceeding the capacity of the tablet to return too many records? (Samsung Galaxy Note)
SQL1.ExecQuery2("SELECT CustSur,CustFore,Street,Broker,tktColour,tktNo,tktdate,Items,Cost,ID" _
& " FROM tbltickets WHERE CustSur LIKE ? AND CustFore LIKE ? ORDER BY CustSur,CustFore",ArrayAsString(txtCustSur.text, txtCustFore.text))
If I put in "be%" for CustSur I get (eg) "Beaumont" returned
If I put in "_be% , I get "Beaumont"
If I put in "%eau%, I get "Beaumont"
If I put in %e%, I get nothing.
Am I just exceeding the capacity of the tablet to return too many records? (Samsung Galaxy Note)