Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What I am doing wrong here?
Message
From
31/05/2013 18:28:18
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01575375
Message ID:
01575381
Views:
24
This message has been marked as a message which has helped to the initial question of the thread.
>>>Hi everybody,
>>>
>>>In the main method I declared dtReturn this way
>>>
>>>
>>> DataTable dtReturn = new DataTable();         
>>>
>>>         AssembleTableForReturn(dtReturn);
>>>
>>>
>>>In that Assemble method I add columns to the table.
>>>
>>>Then in that same main method I have
>>>
>>>if (database.ExecuteSqlCommand(sqlCommand, out ds, ref messageText, ref statusCode))
>>>            {
>>>               AddInformationToResult(ds, dtReturn, pod);
>>>            }
>>>
>>>
>>>where this method is supposed to add a row to that table this way:
>>>
>>>newRow = dtReturn.NewRow();
>>>
>>>            newRow["resource1"] = pod;        
>>>
>>>            newRow["lname"] = podDescription;
>>>
>>>However, in datatable visualizer I see that table still empty (no rows added).
>>>
>>>Do you see what I may be missing here?
>>>
>>>Thanks in advance.
>>Are you visualizing newRow or dtReturn?
>
>Ok, I re-read documentation and I figured out what I was missing. I was missing Add method to add that row to the datatable
>
>http://msdn.microsoft.com/en-us/library/5ycd1034(v=vs.80).aspx

Right.
Anyone who does not go overboard- deserves to.
Malcolm Forbes, Sr.
Previous
Reply
Map
View

Click here to load this message in the networking platform