G
Guest
hello.
have application which i submits sql queeries to remote SQL server. i want
to do these from back ground thread. most importantly i wan this back ground
thread to perform the execuiono of the querry in the order i post them. wheni
used new thread for each querry had problems wiht them not executing in the
order i want. can some on help me please?
*******************************************************
DBsql.NonQuery=NonQuery;
DBsql.QParameter=QParameter;
WorkerThread=new Thread(new ThreadStart(DBsql.ExecuteQueryNon));
WorkerThread.Priority=ThreadPriority.BelowNormal;
WorkerThread.Start();
have application which i submits sql queeries to remote SQL server. i want
to do these from back ground thread. most importantly i wan this back ground
thread to perform the execuiono of the querry in the order i post them. wheni
used new thread for each querry had problems wiht them not executing in the
order i want. can some on help me please?
*******************************************************
DBsql.NonQuery=NonQuery;
DBsql.QParameter=QParameter;
WorkerThread=new Thread(new ThreadStart(DBsql.ExecuteQueryNon));
WorkerThread.Priority=ThreadPriority.BelowNormal;
WorkerThread.Start();