Click here to Skip to main content
15,889,281 members
Home / Discussions / C#
   

C#

 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 23:02
MAW304-Dec-07 23:02 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 23:21
MAW304-Dec-07 23:21 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
dan!sh 4-Dec-07 23:27
professional dan!sh 4-Dec-07 23:27 
Generalsql database problem Pin
angels7774-Dec-07 20:43
angels7774-Dec-07 20:43 
GeneralRe: sql database problem Pin
Jacky Yiu4-Dec-07 20:53
Jacky Yiu4-Dec-07 20:53 
GeneralRe: sql database problem Pin
angels7774-Dec-07 23:04
angels7774-Dec-07 23:04 
GeneralRe: sql database problem Pin
angels7774-Dec-07 23:11
angels7774-Dec-07 23:11 
GeneralRe: sql database problem Pin
Jacky Yiu4-Dec-07 23:42
Jacky Yiu4-Dec-07 23:42 
Because the table name is the one you added in the dataset:

DataTable table999;
string command = "select * from Table1";
SqlDataAdapter father = new SqlDataAdapter(command, myConnection);

DataSet son = new DataSet();
son.Tables.Add("Table1");

father.Fill(son, "Table1");
...

That's work.

But there has only one select statement in your case, why don't you use the index rather than table name?
GeneralRe: sql database problem Pin
angels7775-Dec-07 16:14
angels7775-Dec-07 16:14 
GeneralRe: sql database problem Pin
Jacky Yiu5-Dec-07 16:40
Jacky Yiu5-Dec-07 16:40 
Questionexport datagridview to excel Pin
Nitin Raj4-Dec-07 20:31
Nitin Raj4-Dec-07 20:31 
GeneralRe: export datagridview to excel Pin
Vasudevan Deepak Kumar4-Dec-07 21:40
Vasudevan Deepak Kumar4-Dec-07 21:40 
GeneralScrolling in form Pin
amit_834-Dec-07 20:23
amit_834-Dec-07 20:23 
GeneralRe: Scrolling in form Pin
Jacky Yiu4-Dec-07 20:33
Jacky Yiu4-Dec-07 20:33 
GeneralRe: Scrolling in form Pin
amit_834-Dec-07 21:22
amit_834-Dec-07 21:22 
GeneralRe: Scrolling in form Pin
Jacky Yiu4-Dec-07 23:44
Jacky Yiu4-Dec-07 23:44 
GeneralMultiClient Prob. Pin
DeepOceans4-Dec-07 20:07
DeepOceans4-Dec-07 20:07 
GeneralNullable datatyped and coalesce Pin
DIPAK@EMSYS4-Dec-07 19:50
DIPAK@EMSYS4-Dec-07 19:50 
GeneralRe: Nullable datatyped and coalesce Pin
Colin Angus Mackay4-Dec-07 22:09
Colin Angus Mackay4-Dec-07 22:09 
QuestionChat Server Pin
Smithakrishnan4-Dec-07 19:43
Smithakrishnan4-Dec-07 19:43 
GeneralMessage Closed Pin
4-Dec-07 20:07
CKnig4-Dec-07 20:07 
GeneralRe: Chat Server Pin
Smithakrishnan4-Dec-07 20:53
Smithakrishnan4-Dec-07 20:53 
GeneralRe: Chat Server Pin
N a v a n e e t h4-Dec-07 20:20
N a v a n e e t h4-Dec-07 20:20 
GeneralEditable Grid On Keypress Pin
Archana New to Dotnet4-Dec-07 19:23
Archana New to Dotnet4-Dec-07 19:23 
GeneralRe: Editable Grid On Keypress Pin
Nouman Bhatti4-Dec-07 19:50
Nouman Bhatti4-Dec-07 19:50 

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.