F
Felix González
Hi,
I`m working with SQLServerCE, and I´ve a table linOrder like this:
create table LinOrder (IDOrder integer not null, NumLin smallint not null,
........"
alter table LinOrder add Constraint CodLinOr primary key (IDOrder, NumLin)";
in .NET I`ve defined a DataSet with a table in the same way. I create a
DataAdapter a d Commanduilder but the update an delete sentece are
erroneous, are somthis like "delete from LinOrder where IDOrder=?" and
where is the numlin? what I doing bad?
thanks
I`m working with SQLServerCE, and I´ve a table linOrder like this:
create table LinOrder (IDOrder integer not null, NumLin smallint not null,
........"
alter table LinOrder add Constraint CodLinOr primary key (IDOrder, NumLin)";
in .NET I`ve defined a DataSet with a table in the same way. I create a
DataAdapter a d Commanduilder but the update an delete sentece are
erroneous, are somthis like "delete from LinOrder where IDOrder=?" and
where is the numlin? what I doing bad?
thanks