[Oledb-dev] Is it time for 1.0.0.20?

Konstantin Izmailov kizmailov at gmail.com
Mon Apr 17 05:02:50 UTC 2006


BTW, here is the VB Script that can be used to test the IRowsetLocate and
IRowsetScroll (feel free to make it as complex as you want):


Const adOpenStatic = 3
Const adLockOptimistic = 3
Const adUseServer = 2
Const adUseClient = 3

Set objConnection = CreateObject("ADODB.Connection")
Set objRecordset = CreateObject("ADODB.Recordset")

'objConnection.mode = 1

objConnection.Open "Provider=PostgreSQL;Data
Source=localhost;Location=northwind;User ID=sa;Password=password"
objRecordset.CursorLocation = adUseServer
objRecordset.Open "SELECT * FROM employees", objConnection, adOpenStatic,
adLockOptimistic
msgbox objRecordset.AbsolutePage
msgbox objRecordset.PageCount
objRecordset.Close
objConnection.Close
Regards
Konstantin


On 4/15/06, Shachar Shemesh <psql at shemesh.biz> wrote:
>
> Konstantin Izmailov wrote:
>
> > another question is how should i send you new files? some of them have
> > over 300 lines. it will be very long e-mail. if that's ok, i will just
> > copy/paste the source code.
>
> Don't copy/paste anything. It makes it close to impossible for me to
> handle the diffs afterwards. Only attach text files.
>
> If "cvs diff -uN" doesn't give you newly added files then yes, do attach
> them seperately. I'll try to find a way to resolve this issue.
>
>          Shachar
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://pgfoundry.org/pipermail/oledb-devel/attachments/20060417/85f52245/attachment-0001.html 


More information about the Oledb-devel mailing list