Re: query-based update failed
- From: changliw@xxxxxxxxxxxxxxxxxxxx (Charles Wang[MSFT])
- Date: Thu, 19 Apr 2007 12:36:20 GMT
Hi Chris,
Could you please clarify a bit more on what you mean by "checking each
record in your recordset to see if it is in your database table at that
time"?
I mean that you need to check if the record in your recordset is existed in
your database table. If it does not exist, it is impossible to update it.
"And primary key EmpID has been set correctly before you call EmpRs.UpdateI had thought that you knew the EmpID before the update otherwise how did
method"? How can we determine if the key has been set correctly?
you know which record should be updated.
Maybe you need to run a query like the following before you execute the
update:
IF EXISTS(SELECT * FROM <tablename> WHERE EMPID=<empid>)
BEGIN
UPDATE <tablename> SET ..... WHERE EMPID=<empid>
END
Hope this helps. If you have any other questions or concerns, please feel
free to let me know.
Best regards,
Charles Wang
Microsoft Online Community Support
=====================================================
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
======================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================
.
- References:
- query-based update failed
- From: Chris Fayette
- RE: query-based update failed
- From: Charles Wang[MSFT]
- Re: query-based update failed
- From: Chris Fayette
- query-based update failed
- Prev by Date: Re: query-based update failed
- Next by Date: Updating linked table in access 2000
- Previous by thread: Re: query-based update failed
- Next by thread: Re: query-based update failed
- Index(es):
Relevant Pages
|