Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. google. articles. downloads. faq. members. weblogs. sponsors. rss.
 From: tushar
  Where is tushar?
 Panaji
 India
 tushar
 To: MENDEL TOLIBAS
  Where is MENDEL TOLIBAS?
 makati
 Philippines
 MENDEL TOLIBAS
 Tags
Subject: RE: Update Oracle Database
Thread ID: 203154 Message ID: 203161 # Views: 33 # Ratings: 0
Version: Visual FoxPro 7 Category: ODBC, ADO and OLEDB
Date: Wednesday, November 12, 2008 9:25:37 AM         
   


> Good day!!!
> Need Help, We're planning to migrate our data oracle I got this command in connecting to oracle database
>
> lcString='Driver={Microsoft ODBC for Oracle};Server=el;Uid=master;
> Pwd=master;'
> lnHandle=SQLSTRINGCONNECT(lcString)
>
> = SQLEXEC(lnHandle, 'SELECT * FROM employees order by firstname', 'MyCursor')
>
> browse
>
> How can I update the employee table , using our old database to oracle database
> thank you so much!!!

You can start by reading http://www.foxite.com/faq/default.aspx?id=54.

One major difference between VFP and a backend is that when you give a command
USE Tablename
the complete data of the table is not transferred to the workstation over the network. But if you give
SELECT * FROM TableName
to a backend database, the complete table is transferred and you increase network traffic. If there are a lot of workstations, the server and network will find it difficult to cope. So you have to get just the records and just the fields you need with
SELECT FieldName1,FieldName2 FROM TableName WHERE SomeCondition

Regards
Tushar



COMPLETE THREAD
Update Oracle Database Posted by MENDEL TOLIBAS @ 11/12/2008 9:03:31 AM
RE: Update Oracle Database Posted by Anil Sharma @ 11/12/2008 9:10:28 AM
RE: Update Oracle Database Posted by MENDEL TOLIBAS @ 11/14/2008 4:52:00 AM
RE: Update Oracle Database Posted by Stefan Wuebbe @ 11/14/2008 5:41:18 AM
RE: Update Oracle Database Posted by Anil Sharma @ 11/14/2008 6:24:35 AM
RE: Update Oracle Database Posted by tushar @ 11/12/2008 9:25:37 AM