Hi all

I experience Problem when using SQL Server Timestamp
attribute. I have a DataAdapter defined to use Stored
SQL Procedure for select, insert, update and delete.

When i fill the DataSet i also populate it with the
SQL2K Server Timestamp. How can i pass the Timestamp value
back in the Dataset or how is the correct definition of
the Dataset for the Timestamp value.

When i perform a update with the DataAdapter.Update Method
the Update will fail if i have a statement like this
in the Stored Proc:
Update Table set Name = @Name where ID_Table = @ID and
Tstamp = @Tstamp

If is use the statement :
Update Table set Name = @Name where ID_Table = @ID
with no Timestamp the Update is well working.

I guess that the Timestamp value is not passed in the Format
needed.

The DataAdapter is generated with the wizard. I'm using a typed
Dataset.

Do you have some suggestion / help ?

Best Regards
Paolo Taverna