ADO docs

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

ADO docs

Costas
Can someone point me to the docs for ADODB? I looked on object-arts
website and can't find any reference, but I seem to recall there is a
set of docs somewhere.

Regards,

Costas


Reply | Threaded
Open this post in threaded view
|

Re: ADO docs

Blair McGlashan
"Costas" <[hidden email]> wrote in message
news:[hidden email]...
> Can someone point me to the docs for ADODB? I looked on object-arts
> website and can't find any reference, but I seem to recall there is a
> set of docs somewhere.

http://msdn.microsoft.com is always a good start for these sort of things,
although even Google brings in a good reference not far down the list.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/
dasdkadooverview.asp

Regards

Blair


Reply | Threaded
Open this post in threaded view
|

Re: ADO docs

Costas
>"Costas" <[hidden email]> wrote in message
>news:[hidden email]...
>> Can someone point me to the docs for ADODB? I looked on object-arts
>> website and can't find any reference, but I seem to recall there is a
>> set of docs somewhere.
>
>http://msdn.microsoft.com is always a good start for these sort of things,
>although even Google brings in a good reference not far down the list.
>
>http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/
>dasdkadooverview.asp
>

Blair,

Sorry if my message was not clear. I know how to use ADO. I was trying
to find the correct method to access or update a field in a recordset
in Dolphin's ADODB classes. Looking through the methods I could not
find anything specifc other than a method called #fields. But this
returns a collection of field objects and their values which means I
have to write my own method to access a particular field's data.

In VB for example you would just simply say something like (provided I
created the recordset)

amt=myRecordset.Field("amount")  ' retrieve data

myRecordset.Field("amount")=amt  ' set data.

I am looking for a similar method in Dolphin.  E.g.

myRecordset field: 'amount'

or

myRecordset field: 'amount' value: 123


Costas