T thewavemaster Member Licensed User Longtime User Dec 28, 2012 #1 Hi! Im just playing around little bit with DButils!! I try to get every entry of december 24th 2012 with the following line of code: B4X: m = DBUtils.ExecuteMap(SQL, "SELECT * FROM Dienst WHERE Datum = '24.12.2012'", _ Array As String(Value)) But I always get a SQL Bind Or Column Index out of range error... What is wrong?
Hi! Im just playing around little bit with DButils!! I try to get every entry of december 24th 2012 with the following line of code: B4X: m = DBUtils.ExecuteMap(SQL, "SELECT * FROM Dienst WHERE Datum = '24.12.2012'", _ Array As String(Value)) But I always get a SQL Bind Or Column Index out of range error... What is wrong?
klaus Expert Licensed User Longtime User Dec 28, 2012 #2 Try with this B4X: m = DBUtils.ExecuteMap(SQL, "SELECT * FROM Dienst WHERE Datum = '24.12.2012'", Null) Best regards. Upvote 0
Try with this B4X: m = DBUtils.ExecuteMap(SQL, "SELECT * FROM Dienst WHERE Datum = '24.12.2012'", Null) Best regards.
T thewavemaster Member Licensed User Longtime User Dec 28, 2012 #3 works perfect! Vielen Dank Klaus! Upvote 0