TorrediPisa
Programmer
Good Day to everyone.
When I write a record in a Table (where there is a numeric field with identity (counter)), how is possible to know the value that will be written in that field before or after the updating?
For Example my Table has three fields: ID(with identity), Field1 and Field2
If I do like this:
rsADO.Addnew
rsADO!Field1 = "Value1"
rsADO!Field2 = "Value2"
rsADO.Update
Where can I know the value of rs!ID?
(In Access we can do that)
Thanks for yr help
Regards
TdP
When I write a record in a Table (where there is a numeric field with identity (counter)), how is possible to know the value that will be written in that field before or after the updating?
For Example my Table has three fields: ID(with identity), Field1 and Field2
If I do like this:
rsADO.Addnew
rsADO!Field1 = "Value1"
rsADO!Field2 = "Value2"
rsADO.Update
Where can I know the value of rs!ID?
(In Access we can do that)
Thanks for yr help
Regards
TdP