I am in the middle of converting an application from b4a into b4i. I am using a resultset and I get an error if I try to return data using the table and column name.
For example I have an inner join on some tables and there is a column called question, in the question table i.e. getstring("question.question") there is also a column called question in some other tables, I understand the ambigious nature of the column names but I was not responsible for the design.
Is there a way of referencing the table name and column that I am after?
I am using resultset and a db3 database.
Thanks
Tom
For example I have an inner join on some tables and there is a column called question, in the question table i.e. getstring("question.question") there is also a column called question in some other tables, I understand the ambigious nature of the column names but I was not responsible for the design.
Is there a way of referencing the table name and column that I am after?
- I have tried "select question as Q..." > getstring("question.Q").
- I have also tried getstring("[question].question").
- I tried to target the colum too using getstring(5) '5 being an example of where question column is in the sql select.
I am using resultset and a db3 database.
Thanks
Tom