I have a relatively simple .NET (2.0) application built with VS 2005, that has been running in production for months. The app consist of a webform and a web service which handles all the database retrievals and updates using datasets. Upon launching the page, the app retrieves the requested rows from Oracle tables and displays the data to the user in a textbox, checkbox and drop down list controls. Once the user is finished editing, they click a save button which initiates the actions to re-save the data.
Recently, I attempted to install code changes to this working application. I started by altering one of the production Oracle tables to add a new column. That is as far as I got before the users halted the turnover. Naturally, I restored the table to how it originally looked but now the app abends(?) with the above noted error when the save click event is fired.
I have verified that the table is back to its original format. I have opened and rebuilt both web form solution and web service solution on my local machine, which builds fine but produces the object reference error when run. The error is pointing to the dataset referencing the once-altered table. Does anyone know how the alter table statement I ran in PL/SQL developer affected the production code and how to remedy this situation?