N
Nick
I've got the small section of code below running in a thread. I need to give
the user the ability to cancel the operation. Is there a way to do that?
There are times when it could take a long time to fill and they may want to
cancel. The query could be an insert, update, or delete.
OdbcDataAdapter _adp = new OdbcDataAdapter(_sql, _connection);
DataTable _dt = new DataTable();
_adp.Fill(_dt);
Thanks for any help, I sincerely appreciate it.
Nick
the user the ability to cancel the operation. Is there a way to do that?
There are times when it could take a long time to fill and they may want to
cancel. The query could be an insert, update, or delete.
OdbcDataAdapter _adp = new OdbcDataAdapter(_sql, _connection);
DataTable _dt = new DataTable();
_adp.Fill(_dt);
Thanks for any help, I sincerely appreciate it.
Nick