Re: can I use ADO connection in VFP 6.0....??
- From: "Cindy Winegarden" <cindy_winegarden@xxxxxxx>
- Date: Mon, 13 Jun 2005 18:03:37 -0400
Hi Eusebio,
Although you can use ADO in VFP, Visual FoxPro accesses data natively.
*-- Open a table
Use Customers In 0 Order CustID
*-- Find a record
Seek 123
*-- Change some data
Replace CustName With "Fred" ;
For CustID = 123
*-- Another way to change data
Update Customers ;
Set CustName To "Fred" ;
Where CustID = 123
*-- Close the table
Use In Customers
Can you describe in more detail what you want to do with your data?
--
Cindy Winegarden MCSD, Microsoft Visual Foxpro MVP
cindy_winegarden@xxxxxxx www.cindywinegarden.com
Blog: http://spaces.msn.com/members/cindywinegarden
<Chevy74> wrote in message news:OXNHy$FcFHA.1404@xxxxxxxxxxxxxxxxxxxxxxx
> I'm a Visual Basic developer but now I need to make an app in Visual Fox
> Pro
> 6.0, my questios is if I can use ActiveX Data Objects (ADO) in VFP and if
> so
> an exmple o a link....
.
- Follow-Ups:
- Re: can I use ADO connection in VFP 6.0....??
- From: Chevy74
- Re: can I use ADO connection in VFP 6.0....??
- References:
- can I use ADO connection in VFP 6.0....??
- From: Chevy74
- can I use ADO connection in VFP 6.0....??
- Prev by Date: can I use ADO connection in VFP 6.0....??
- Next by Date: Re: Index on free table
- Previous by thread: can I use ADO connection in VFP 6.0....??
- Next by thread: Re: can I use ADO connection in VFP 6.0....??
- Index(es):
Relevant Pages
|