|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
Problems wif database and applications
Hello!
I using visual basic 6 to do my application and using Microsoft Access 2000 as my database as file. I need to get a certain number of fields in my database table in order to load the number of images out on to my application. Like for examples, i got 3 fields of data, i need to load 3 images... How can i go about in doing it? Thanks. |
|
#2
|
|||
|
|||
|
What DB engine do you use(JET, ADO) ?
|
|
#3
|
|||
|
|||
|
Hi
I using ADO. Thanks. |
|
#4
|
|||
|
|||
|
Quote:
Firstly sorry for the mistake. I meant DAO not JET. Because JET is most widespread OLEDB provider for MS Access. You can do the following: Set oCon = New Connection oCon.Open sConnectionString Dim rs As ADODB.Recordset Set rs = oCon.OpenSchema(adSchemaColumns) Do While Not rs.EOF if rs!TABLE_NAME = "MyTable" Then .... 'custom processing End If rs.MoveNext Loop set rs = Nothing Set oCon = Nothing |
|
#5
|
|||
|
|||
|
Thanks Strannik for ur help...!
I will try to figure abt other coding...! ![]() |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Visual Basic Programming > Problems wif database and applications |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|