Click here to Skip to main content
15,912,207 members
Home / Discussions / C#
   

C#

 
QuestionCheck for mysql installation Pin
sumit703415-Aug-10 20:32
sumit703415-Aug-10 20:32 
AnswerRe: Check for mysql installation Pin
Bernhard Hiller15-Aug-10 20:51
Bernhard Hiller15-Aug-10 20:51 
GeneralRe: Check for mysql installation Pin
sumit703415-Aug-10 21:11
sumit703415-Aug-10 21:11 
GeneralRe: Check for mysql installation Pin
Bernhard Hiller16-Aug-10 2:08
Bernhard Hiller16-Aug-10 2:08 
AnswerRe: Check for mysql installation Pin
Luc Pattyn16-Aug-10 0:04
sitebuilderLuc Pattyn16-Aug-10 0:04 
QuestionInherit an internal class to a public class Pin
amit sahu2015-Aug-10 20:02
amit sahu2015-Aug-10 20:02 
AnswerRe: Inherit an internal class to a public class Pin
OriginalGriff15-Aug-10 22:15
mveOriginalGriff15-Aug-10 22:15 
AnswerRe: Inherit an internal class to a public class Pin
Luc Pattyn16-Aug-10 0:09
sitebuilderLuc Pattyn16-Aug-10 0:09 
GeneralRe: Inherit an internal class to a public class Pin
amit sahu2016-Aug-10 0:13
amit sahu2016-Aug-10 0:13 
AnswerRe: Inherit an internal class to a public class Pin
Luc Pattyn16-Aug-10 0:39
sitebuilderLuc Pattyn16-Aug-10 0:39 
GeneralRe: Inherit an internal class to a public class Pin
amit sahu2016-Aug-10 1:02
amit sahu2016-Aug-10 1:02 
GeneralRe: Inherit an internal class to a public class Pin
OriginalGriff16-Aug-10 1:06
mveOriginalGriff16-Aug-10 1:06 
GeneralRe: Inherit an internal class to a public class Pin
Luc Pattyn16-Aug-10 1:14
sitebuilderLuc Pattyn16-Aug-10 1:14 
GeneralRe: Inherit an internal class to a public class Pin
OriginalGriff16-Aug-10 1:21
mveOriginalGriff16-Aug-10 1:21 
GeneralRe: Inherit an internal class to a public class Pin
Luc Pattyn16-Aug-10 1:24
sitebuilderLuc Pattyn16-Aug-10 1:24 
GeneralRe: Inherit an internal class to a public class Pin
dave.dolan16-Aug-10 9:05
dave.dolan16-Aug-10 9:05 
GeneralRe: Inherit an internal class to a public class Pin
OriginalGriff16-Aug-10 1:23
mveOriginalGriff16-Aug-10 1:23 
GeneralRe: Inherit an internal class to a public class Pin
Luc Pattyn16-Aug-10 1:28
sitebuilderLuc Pattyn16-Aug-10 1:28 
AnswerRe: Inherit an internal class to a public class Pin
Łukasz Nowakowski16-Aug-10 3:24
Łukasz Nowakowski16-Aug-10 3:24 
QuestionLearning Datasets... Pin
JollyMansArt15-Aug-10 10:28
JollyMansArt15-Aug-10 10:28 
If someone has a better idea in how I can do this please let me know. Normally I what I would do is call sqlreader and each field I would put into a custom array to use through out the application.

Well now that I have learned how to create a dataset, while in code without using the vs customized dataset's interface...
string connectionString = TheSQLConnectionString.ConnectionString.ToString();
                        //DataSet dtSet = new DataSet();
                        //SqlConnection connection;
                        using (connection = CreateConn())
                        {
                            command = new SqlCommand(TheSQLCommand, connection);
                            SqlDataAdapter adapter = new SqlDataAdapter(command);
                            adapter.Fill(dtSet);
                        }


Now what I want to be able to do is take the (dtSet) dataset and in code read each row and each row's columns of data.
However I want to place this code in a class Passing the parameters (table, row, and column) and I want the class procedure to return the value.

Can someone point me in the right direction please in how to understand datasets in order to accomplish this?
Thanks in advance.
AnswerRe: Learning Datasets... PinPopular
PIEBALDconsult15-Aug-10 11:04
mvePIEBALDconsult15-Aug-10 11:04 
GeneralRe: Learning Datasets... Pin
Dan Mos15-Aug-10 12:06
Dan Mos15-Aug-10 12:06 
QuestionRe: Learning Datasets... Pin
JollyMansArt15-Aug-10 15:14
JollyMansArt15-Aug-10 15:14 
AnswerRe: Learning Datasets... Pin
Luc Pattyn15-Aug-10 15:54
sitebuilderLuc Pattyn15-Aug-10 15:54 
GeneralRe: Learning Datasets... Pin
Keith Barrow15-Aug-10 12:20
professionalKeith Barrow15-Aug-10 12:20 

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.