
Disconnected Recordset: Not editable SQL-JOIN used
This is not an ADO issue. The select/where statement is used by the DB
SYSTEM to determine whether the view is 'updatable' or not. This is true
whether we use an API LIB (like DBLIB for sql server) or ADO or whatever.
Please review your server documentation on this topic. Factors which affect
this are such things as computed columns, primary keys, uniqueness of
columns, referential constraints. In general, TEST for updatablity using a
SERVER tool (like ISQL/W) and simulate the statements which you want ADO to
use. Then code in ADO. ADO is not magic, nor does it have a mind of its
own. The Server (Oracle, SQL Server, DB2, whomever) has the ultimate say in
these things.
hope this helps.
[also please reduce the number of crossposts and try to stay on topic to
those you post to]
Quote:
> Hello
> I figured out that I can not Update/Insert anything a my
unbound/disconected
> recordset when the Recordset has created with more then one Table
> "Select A,B,C FROM Table1, Table2 WHERE A = C" -<--update/insert doesnt
> work even it is disconected
> "Select A FROM Table 1 " <---update/insert works...
> My question: How can I make update/inserts into a table where I use
> "SQL-WHERE" (1st Query)
> thanks
> Miki ;>