BorlandGeek
Programmer
I am upgrading my programs from BDE to ADO and in my old programs i had the line
catch(const Exception &EDatabase)
{
MessageBox(0, EDatabase.Message.c_str(), "Error in SQL", MB_OK);
}
now that im working in 6 it says that EDatabase doesnt exist
does anyone have any ideas
catch(const Exception &EDatabase)
{
MessageBox(0, EDatabase.Message.c_str(), "Error in SQL", MB_OK);
}
now that im working in 6 it says that EDatabase doesnt exist
does anyone have any ideas