Click here to Skip to main content
15,907,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: String Format Help! Pin
solutionsville25-Oct-07 9:33
solutionsville25-Oct-07 9:33 
QuestionDataSet.DataTable.Select() returns undefined value Pin
Rukmini T25-Oct-07 8:32
Rukmini T25-Oct-07 8:32 
AnswerRe: DataSet.DataTable.Select() returns undefined value Pin
pmarfleet25-Oct-07 9:40
pmarfleet25-Oct-07 9:40 
GeneralRe: DataSet.DataTable.Select() returns undefined value Pin
Rukmini T25-Oct-07 10:58
Rukmini T25-Oct-07 10:58 
GeneralRe: DataSet.DataTable.Select() returns undefined value Pin
pmarfleet25-Oct-07 11:08
pmarfleet25-Oct-07 11:08 
GeneralRe: DataSet.DataTable.Select() returns undefined value Pin
Rukmini T25-Oct-07 11:16
Rukmini T25-Oct-07 11:16 
GeneralRe: DataSet.DataTable.Select() returns undefined value Pin
pmarfleet25-Oct-07 11:40
pmarfleet25-Oct-07 11:40 
GeneralRe: DataSet.DataTable.Select() returns undefined value Pin
Paul Conrad23-Dec-07 15:02
professionalPaul Conrad23-Dec-07 15:02 
QuestionYUV player Pin
project c25-Oct-07 8:22
project c25-Oct-07 8:22 
QuestionDesign Patterns Pin
ilango gandhi25-Oct-07 7:30
ilango gandhi25-Oct-07 7:30 
AnswerRe: Design Patterns Pin
led mike25-Oct-07 8:20
led mike25-Oct-07 8:20 
AnswerRe: Design Patterns Pin
pmarfleet25-Oct-07 8:23
pmarfleet25-Oct-07 8:23 
GeneralRe: Design Patterns Pin
ilango gandhi25-Oct-07 20:38
ilango gandhi25-Oct-07 20:38 
AnswerRe: Design Patterns Pin
Paul Conrad27-Oct-07 12:29
professionalPaul Conrad27-Oct-07 12:29 
QuestionC# and XML Pin
humblepgmr25-Oct-07 6:56
humblepgmr25-Oct-07 6:56 
AnswerRe: C# and XML Pin
pmarfleet25-Oct-07 7:22
pmarfleet25-Oct-07 7:22 
AnswerRe: C# and XML Pin
Mike Hankey25-Oct-07 7:25
mveMike Hankey25-Oct-07 7:25 
AnswerEven simpler Pin
Ennis Ray Lynch, Jr.25-Oct-07 8:01
Ennis Ray Lynch, Jr.25-Oct-07 8:01 
AnswerRe: C# and XML Pin
led mike25-Oct-07 8:19
led mike25-Oct-07 8:19 
AnswerRe: C# and XML Pin
Ravi Bhavnani25-Oct-07 13:57
professionalRavi Bhavnani25-Oct-07 13:57 
Questionultragrid update sql server???? Pin
NewToAspDotNet25-Oct-07 5:40
NewToAspDotNet25-Oct-07 5:40 
AnswerRe: ultragrid update sql server???? Pin
Abhijit Jana25-Oct-07 6:24
professionalAbhijit Jana25-Oct-07 6:24 
GeneralRe: ultragrid update sql server???? Pin
NewToAspDotNet25-Oct-07 6:59
NewToAspDotNet25-Oct-07 6:59 
AnswerRe: ultragrid update sql server???? Pin
pmarfleet25-Oct-07 7:27
pmarfleet25-Oct-07 7:27 
AnswerRe: ultragrid update sql server???? Pin
Dave Kreskowiak25-Oct-07 7:38
mveDave Kreskowiak25-Oct-07 7:38 
There are two possibilities.

The first is that you setup your DataAdapter using an SQL Select command, but you didn't supply the Update, Delete, Insert SqlCommands to it. Or, you didn't use an SqlCommandBuilder object on the DataAdapter to have it fill in the remaining commands.

The second is that you did the stuff in the first paragraph, but the SQL Select command you gave it returns data from multiple tables. The DataAdapters will only work with single table queries if you want to call its Update method.


A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


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.