Hi Everyone,
I have about 10 text boxes I would like to populate with a query from the database but don't know how to do it in a single statement.
In Oracle / plsql I would use something like this using 3 table columns as an example:
Can you show me the coding I need to do the same thing in Basic4Android?
Thanks.
I have about 10 text boxes I would like to populate with a query from the database but don't know how to do it in a single statement.
In Oracle / plsql I would use something like this using 3 table columns as an example:
B4X:
TheFirstName Varchar2(15);
TheLastName Varchar2(15);
TheId Number;
TheIdValue = 550
SELECT Id, FirstName, LastName
INTO TheId, TheFirstName, TheLastName
FROM MyTable
WHERE Id = TheIdValue;
Can you show me the coding I need to do the same thing in Basic4Android?
Thanks.
Last edited: