Y
yoramo
I'm tring to insert a new row to a table but it seems that it failes (I
think) because the values of the new Row are null.
here is the defenition of the table, I suspect that my problem is in the
defenition.
create table aa.dbo.Tasks
(
ID int primary key identity(1,1),
Done bit,
TaskGroup varchar(30),
Subject varchar(40),
Initiator int,
Resource int,
Note varchar(200)
)
Do I need to define default values?
Yoramo
think) because the values of the new Row are null.
here is the defenition of the table, I suspect that my problem is in the
defenition.
create table aa.dbo.Tasks
(
ID int primary key identity(1,1),
Done bit,
TaskGroup varchar(30),
Subject varchar(40),
Initiator int,
Resource int,
Note varchar(200)
)
Do I need to define default values?
Yoramo