You should use JdbcSQL if you want to directly connect to a MS SQL database.
It may seem like bullshit but that's exactly what I want and I can not get somebody out of a light
Imagine a database with a table called "Mytab".
This table contains 2 records each record has two columns
ex: id name
01 Mary
02 John
Okay, what I need is to do a select on this table of type:
"select id, Name from MyTab"
is to put the table data in two variables of the type
dim id (2) as string
dim Nm (2) as string
in vb6 could be like this
id (1) = tb ("id")
Nm (1) = tb ("Name")
tb.movenext
id (2) = tb ("id")
Nm (2) = tb ("Name")
debug.print id(2)
02
debug.print Nm(2)
John
I would like this to work on b4a
Could you in 5 to 10 program lines show how this really works?
because I arrive as you can see through the images until having the whole base inside a string
[01 Mary 02 John]
but for this I had to make a program to separate the data from there.
and I know it has a super simple form but I do not think