Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple-step operation generated errors. Check each status value. 2

Status
Not open for further replies.

hneal98

Programmer
Aug 13, 2002
1,637
US
Can someone tell me what this error means?

"Multiple-step operation generated errors. Check each status value."

I get it when trying to assign data to a field that is null.

Sorry, It has been a long time since I have used VB.

Thanks.
 
You are issuing an SQL command when you get this I'm guessing.

Thats where I've seen it before. For me it has always just meant that the syntax was OK but some other error happened during execution.

Sounds like maybe that field is specified as not allowing Null values (or if its and Access database Zero Length)?

If thats possible look at the data base design to verify. Then you just have to decide if it is really a problem to allow them. If not just uncheck the restriction.
 
Ok. Thanks for the input. I will look into it now.
 
You were correct. It was an underlying problem with the database. The field was expecting 1 charecter, but the code was trying to dump two in.

Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top