SQLHelper & sorting

  • Thread starter Thread starter Goober
  • Start date Start date
G

Goober

I have an application that I need to sort the results of a datagrid,
when a user clicks on a particular column.

The application uses SQLHelper in it. Is there a way to call the stored
procedure and sort the results on it, using SQL Helper? I can do this
by putting the code in the app, and it works, but would like to use SQL
helper with it instead.

Thanks,

CB
\
 
Typically the DataView is used to do ther sorting in memory on the webserver,
but it requires the data to be in a DataSet/DataTable. I've never heard of
SQLHelper, so I can't help you there.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Back
Top