ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   help in showing results of database query (https://www.excelbanter.com/excel-programming/308146-help-showing-results-database-query.html)

andy[_6_]

help in showing results of database query
 
hi i connect to a oracle database and i i do the
following select
select distinct(book)
from book_table
where trun(date)=trunc(sysdate-1)

it returns a column of with 3 rows in it
what i have is a form that has 3 text boxes on it
i want to put the first row value on textbox 1
and the second row value in txt box 2
and so on
can anyone advise how

cheers

andy

Jamie Collins

help in showing results of database query
 
"andy" wrote ...

hi i connect to a oracle database and i i do the
following select
select distinct(book)
from book_table
where trun(date)=trunc(sysdate-1)

it returns a column of with 3 rows in it
what i have is a form that has 3 text boxes on it
i want to put the first row value on textbox 1
and the second row value in txt box 2
and so on


If you have opened an ADO recordset named 'rs', then something like:

Form1.TextBox1.Text = rs!Book
rs.MoveNext
Form1.TextBox2.Text = rs!Book
rs.MoveNext
Form1.TextBox3.Text = rs!Book

Jamie.

--


All times are GMT +1. The time now is 06:59 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com