Click here to Skip to main content
15,891,943 members
Home / Discussions / C#
   

C#

 
GeneralRe: Retrieve resource from resources.resx? Pin
Heinz_30-Sep-05 17:35
Heinz_30-Sep-05 17:35 
QuestionPage_Unload question Pin
Sled Dog30-Sep-05 3:50
Sled Dog30-Sep-05 3:50 
AnswerRe: Page_Unload question Pin
Tom Larsen30-Sep-05 4:35
Tom Larsen30-Sep-05 4:35 
GeneralRe: Page_Unload question Pin
Sled Dog30-Sep-05 4:56
Sled Dog30-Sep-05 4:56 
QuestionCrystalReport RAS Request Pin
User 209307330-Sep-05 2:26
User 209307330-Sep-05 2:26 
Questionfetching data from dataset using sql query Pin
arusmemon30-Sep-05 1:40
arusmemon30-Sep-05 1:40 
AnswerRe: fetching data from dataset using sql query Pin
Gavin Jeffrey30-Sep-05 2:07
Gavin Jeffrey30-Sep-05 2:07 
AnswerRe: fetching data from dataset using sql query Pin
Jon Rista30-Sep-05 7:36
Jon Rista30-Sep-05 7:36 
You can not run SQL queries directly on any ADO.NET data container (DataTable, DataView, DataSet). Your currently only able to set filters (i.e., the where clause of the SQL statement) or sorts (i.e., the order by clause of the SQL statement). If filtering and sorting is all you need, your good to go, although I must warn you, they can be quite slow. The DataSet is going to do all the work you would have done to find the records you needed, and its going to go through more code than you would write yourself most probably.

If you have 5000 rows in your datatable, and you sort them with ADO.NET, its going to be noticably slower than if you sorted them on a database server with a SQL query. The DataSet object also has a significant amount of overhead to provide all the capabilities it offers, so sorting with a DataSet may even be noticably slower than if you sorted manually.

For your purposes, you might be best off writing your own code to find the data you need, or else dump the data into a true database somewhere and actually run that SQL query.
QuestionRotating images Pin
PHDENG8130-Sep-05 1:25
PHDENG8130-Sep-05 1:25 
AnswerRe: Rotating images Pin
Robert Rohde30-Sep-05 9:55
Robert Rohde30-Sep-05 9:55 
Questionhow to pass messages between java and .net without using sockets Pin
hasansheik30-Sep-05 1:03
hasansheik30-Sep-05 1:03 
AnswerRe: how to pass messages between java and .net without using sockets Pin
mohamad rafi30-Sep-05 3:01
sussmohamad rafi30-Sep-05 3:01 
AnswerRe: how to pass messages between java and .net without using sockets Pin
Daniel Grunwald30-Sep-05 3:32
Daniel Grunwald30-Sep-05 3:32 
AnswerRe: how to pass messages between java and .net without using sockets Pin
Jon Rista1-Oct-05 8:18
Jon Rista1-Oct-05 8:18 
QuestionAxAcroPDFLib???? Pin
Walt12330-Sep-05 0:20
Walt12330-Sep-05 0:20 
AnswerRe: AxAcroPDFLib???? Pin
Dave Kreskowiak30-Sep-05 8:23
mveDave Kreskowiak30-Sep-05 8:23 
GeneralRe: AxAcroPDFLib???? Pin
Walt12330-Sep-05 15:57
Walt12330-Sep-05 15:57 
Questioncreate a custom file Pin
Sasuko30-Sep-05 0:05
Sasuko30-Sep-05 0:05 
AnswerRe: create a custom file Pin
Gavin Jeffrey30-Sep-05 2:12
Gavin Jeffrey30-Sep-05 2:12 
AnswerRe: create a custom file Pin
Wjousts30-Sep-05 2:54
Wjousts30-Sep-05 2:54 
QuestionCursors in C# Pin
| Muhammad Waqas Butt |29-Sep-05 23:58
professional| Muhammad Waqas Butt |29-Sep-05 23:58 
AnswerRe: Cursors in C# Pin
Andy Moore30-Sep-05 7:52
Andy Moore30-Sep-05 7:52 
Questionlock failed?! Pin
Sangra29-Sep-05 23:55
Sangra29-Sep-05 23:55 
AnswerRe: lock failed?! Pin
Daniel Grunwald30-Sep-05 3:52
Daniel Grunwald30-Sep-05 3:52 
GeneralRe: lock failed?! Pin
Sangra30-Sep-05 4:29
Sangra30-Sep-05 4:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.