M
mklapp
Hello,
I was trying to find out why a Sql Server table was
not getting updated. It was being updated by a stored
proc invoked from a web service. th SQLAdapter.update
call returned 0, but no errors. I checked a lot of stuff
and found that if I specified the table name in the
update call :
SqlAdapter1.update(ods,"VISITS")
Everything works nicely.
All my adapters have an explicitly named datatable,
but all of them do not need the tablename in
the ".update" invocation.
mklapp
I was trying to find out why a Sql Server table was
not getting updated. It was being updated by a stored
proc invoked from a web service. th SQLAdapter.update
call returned 0, but no errors. I checked a lot of stuff
and found that if I specified the table name in the
update call :
SqlAdapter1.update(ods,"VISITS")
Everything works nicely.
All my adapters have an explicitly named datatable,
but all of them do not need the tablename in
the ".update" invocation.
mklapp