Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I actually try to do an insert on a ADODataset linked on a table with a autogerenated Guid. When I try to get the new Id of my record I get some zero for Guid.

Thanks for the help.

share|improve this question
You will need to save the current bookmark/cursor, use ADODataSet.Requery and restore bookmark/cursor. another option is to try and use SELECT @@IDENTITY after the insert (not tested though) – kobik Sep 19 '12 at 10:03
I tried this solution. But Requery reload all records... no ? So, it isn't the best practices to obtain the best performances – Franck Charlier Sep 19 '12 at 10:45
1  
You can als initialize the guid to the TAdoDataSet before insert or onnewrecord – Ravaut123 Sep 19 '12 at 10:54
Yes! At the moment it's the solution I've choosen. But I would like know the way to use the SQL autogenerated field. :-) – Franck Charlier Sep 19 '12 at 11:11
@kobik: Don't use @@IDENTITY but SCOPE_IDENTITY when you have triggers – Ravaut123 Sep 19 '12 at 11:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.