ODBC/VB4 Update Oracle Table 
Author Message
 ODBC/VB4 Update Oracle Table

I am unable to update an Oracle table that is attached to my Jet/VB4
database via ODBC.  The Oracle userid I specify owns the table and
the password is correct.  I can read the table, but not update it.
I get Run-time error '3027' -- Can't update: Database or object is
read-only.  Can anyone help ?  Email would be appreciated.
--
Thanks,
 Grace Wallen        The Boeing Company
 TELE: 206-234-1802   FAX: 206-234-2820                    



Sun, 07 Nov 1999 03:00:00 GMT  
 ODBC/VB4 Update Oracle Table

Make sure that the Oracle Table has an unique index.

Other ways are RDO or "Oracle Objects for OLE 2.1" ( which I use ).

Roger


http://members.aol.com/zuehldorf/index.html



Tue, 09 Nov 1999 03:00:00 GMT  
 ODBC/VB4 Update Oracle Table

 Hi,
I wanna access local personal oracle7 database in VB4.
But, I have no idea how to connect to local oracle7.

In my opinion, I have to access by ODBC, SQL$NET,
But, I dont know how to setup the configuration files.


Thank you.



Sun, 14 Nov 1999 03:00:00 GMT  
 ODBC/VB4 Update Oracle Table

Quote:

>  Hi,
> I wanna access local personal oracle7 database in VB4.
> But, I have no idea how to connect to local oracle7.

> In my opinion, I have to access by ODBC, SQL$NET,
> But, I dont know how to setup the configuration files.


> Thank you.

Look at your SQL*Net configuration -- you should have a connection
called beq-local.  This connects to your local database.

Put a Data Control down, and give it these properties:

   Connect = "ODBC;DSN=beq-local;UID=scott;PWD=tiger;"
   RecordsetType = 1  'Dynaset
   RecordSource = "select * from table_name"

Put a text field down, and give it this property:

   DataSource = "Data1"
   DataField = "column_name" 'colunn_name from the above query

Run it, and you should be able to navigate your way through the table...



Fri, 19 Nov 1999 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. GPF when updating Oracle table through ODBC

2. Updating Visual FoxPro Table in VB4 through ODBC

3. Oracle ODBC driver / Microsoft ODBC driver for Oracle

4. How I update ORACLE 7.2 database from Visual Basic 4.0 via ODBC

5. Linking to Oracle tables from Access97 via ODBC

6. Cant add records to Oracle table using ODBC Direct

7. Oracle 7, ODBC, SQL*Net, VB4 and WANs

8. ODBC error 3151 with VB4, Access2.0 and Oracle

9. Anybody have info on connecting VB4 to Oracle via 16-bit ODBC

10. create tables with Odbc in Oracle ?

11. ORACLE 7.2, VB4.0 NT4.0 and ODBC

12. Opening Oracle 7.3 database via ODBC in VB4

 

 
Powered by phpBB® Forum Software