Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What I am doing wrong here?
Message
 
 
To
All
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
What I am doing wrong here?
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:
01575375
Views:
69
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.
If it's not broken, fix it until it is.


My Blog
Next
Reply
Map
View

Click here to load this message in the networking platform