D
Dave
Does anyone know of any good online examples of using
DataAdapter.Update when your dataset operations are not
the "trival" case where SELECT, INSERT, UPDATE and DELETE
are applied to all tables in a typed dataset?
Say for example your typed dataset has two tables "First"
and "Second". Your SELECT command should have SELECT
stored procedures for "First" and "Second" but your UPDATE
command stored procedure would only UPDATE "Second" and
the INSERT command would only INSERT into "First".
I find I have a lot of problems with parameters not
supplied, etc. when I try to do this kind of thing.
DataAdapter.Update when your dataset operations are not
the "trival" case where SELECT, INSERT, UPDATE and DELETE
are applied to all tables in a typed dataset?
Say for example your typed dataset has two tables "First"
and "Second". Your SELECT command should have SELECT
stored procedures for "First" and "Second" but your UPDATE
command stored procedure would only UPDATE "Second" and
the INSERT command would only INSERT into "First".
I find I have a lot of problems with parameters not
supplied, etc. when I try to do this kind of thing.