Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CursorAdater and Access Tables.
Message
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
CursorAdater and Access Tables.
Miscellaneous
Thread ID:
00720660
Message ID:
00720660
Views:
46
I have been trying to use the CursorAdapter to read the info from an Access table, but I am having no luck, I have attached the code, if somebody can tell me whats wrong with the code ?

DEFINE CLASS clsADOData AS CursorAdapter
PROCEDURE Init
This.DataSourceType = "ADO"

This.AddProperty("oConn",NEWOBJECT("ADODB.Connection"))
This.AddProperty("oRS" ,NEWOBJECT("ADODB.RecordSet"))

This.oConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\Dev\vfp8\NWind.mdb"
This.oConn.Open()

*-- Attach to The RecordSet
This.oRS.ActiveConnection = This.oConn

This.SelectCmd = "Select * From Customers"

This.CursorFill()
ENDPROC
ENDDEFINE

oAccess = CreateObject('clsADOData')
*-- Should have a cursor with the customers, but nothing ?


This code was modified from one that talks to SQL Server and that worked.

Thanks,
Simon.
Next
Reply
Map
View

Click here to load this message in the networking platform