venuchalla
Programmer
Hello,
I am having a table with these fields.
createdbyalias varchar(20),
notifyalias varchar(20),
title varchar(max),
description varchar(max),
expireat datetime,
completetime int,
issuenumber int ( which is identity field generated on insert)
I am inserting a record into the table and a unique issuenumber is generated for each record, this insert is done from the userinterface.
Now I have to update any record, I am not knowing how to update the record ,
Can you please help me with the code to update the record.
I am having a table with these fields.
createdbyalias varchar(20),
notifyalias varchar(20),
title varchar(max),
description varchar(max),
expireat datetime,
completetime int,
issuenumber int ( which is identity field generated on insert)
I am inserting a record into the table and a unique issuenumber is generated for each record, this insert is done from the userinterface.
Now I have to update any record, I am not knowing how to update the record ,
Can you please help me with the code to update the record.