grip003
Well-known member
For all my past projects, I have been using a database class I wrote to do all my database updating (and retrieving) to and from MySQL. I basically have 2 commands, select and execute. My select function simply returns a DataTable. Therefore, all my changes must be made through the use of the execute function. Anyway, now I have a grid that I want to make changes to and then send all the updates to the database. I know you can bind everything, using a connection object, DataAdapter, and a DataSet and then use the DataAdapters Update function, but I cant seem to figure it out. I would really like to be able to use my database class and just write some kind of update function. Does anyone have any suggestions? Thanks.