I usually work with PowerBuilder.
I am used to using in line SQL like the following to get values from my Databases & process them:
Select SomeFieldValue
Into :SomeVariable
From SomeTable
Where Some[Other?]FieldValue = Some[Other?]Variable;
Then I can go back to PowerBuilder Code and process depending on the contents of 'SomeVariable'.
Or I can do a Do While (True) . . . Loop
and keep looping through all the returned records, processing each record as I go till there are no more records that match the criteria.
What is the best way to do this in VB - Version 6.0 with an MS Access Database?
Thanks,
Robeen
I am used to using in line SQL like the following to get values from my Databases & process them:
Select SomeFieldValue
Into :SomeVariable
From SomeTable
Where Some[Other?]FieldValue = Some[Other?]Variable;
Then I can go back to PowerBuilder Code and process depending on the contents of 'SomeVariable'.
Or I can do a Do While (True) . . . Loop
and keep looping through all the returned records, processing each record as I go till there are no more records that match the criteria.
What is the best way to do this in VB - Version 6.0 with an MS Access Database?
Thanks,
Robeen