Click here to Skip to main content
16,005,389 members
Home / Discussions / Database
   

Database

 
QuestionHelp - "Could not find installable ISAM" Pin
oceanexplorer9-Nov-07 7:39
oceanexplorer9-Nov-07 7:39 
AnswerCross Post Pin
pmarfleet9-Nov-07 9:38
pmarfleet9-Nov-07 9:38 
GeneralRe: Cross Post Pin
oceanexplorer10-Nov-07 7:33
oceanexplorer10-Nov-07 7:33 
GeneralRe: Cross Post Pin
pmarfleet10-Nov-07 7:39
pmarfleet10-Nov-07 7:39 
QuestionGuaranteed stumper...truncating last 3 characters on a string... Pin
new_phoenix9-Nov-07 7:14
new_phoenix9-Nov-07 7:14 
AnswerRe: Guaranteed stumper...truncating last 3 characters on a string... Pin
andyharman9-Nov-07 8:40
professionalandyharman9-Nov-07 8:40 
GeneralRe: Guaranteed stumper...truncating last 3 characters on a string... Pin
Pete O'Hanlon9-Nov-07 10:52
mvePete O'Hanlon9-Nov-07 10:52 
QuestionDataSets Pin
#realJSOP9-Nov-07 5:19
professional#realJSOP9-Nov-07 5:19 
I'm creating a dataset with the following code:

DataSet m_xmlData = new Dataset("Modules");
m_xmlData.Clear();
m_xmlData.ReadXml("thisfile.xml");


I've got this much code written to retrieve the data from the dataset:

int tableCount = m_xmlData.Tables.Count;
for (int i = 0; i < tableCount; i++)
{
    DataTable dt = m_xmlData.Tables[i];
    if (dt.TableName != "Module")
    {
        continue;
    }
    int rowCount = dt.Rows.Count;
    for (int j = 0; j < rowCount; j++)
    {
        DataRow row = dt.Rows[j];

    }
}


At this point, I'm kinda stuck I've looked around on CP but I've not been able to find any references to READING data from the dataset. I tried tracing in with the debugger to try to find out where to drill down, but I guess I'm just missing it.

Any help?



"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


AnswerRe: DataSets Pin
pmarfleet9-Nov-07 6:23
pmarfleet9-Nov-07 6:23 
GeneralRe: DataSets Pin
#realJSOP9-Nov-07 6:24
professional#realJSOP9-Nov-07 6:24 
GeneralRe: DataSets Pin
Pete O'Hanlon9-Nov-07 10:49
mvePete O'Hanlon9-Nov-07 10:49 
QuestionSQL Database sharing Pin
Abbhie9-Nov-07 3:47
Abbhie9-Nov-07 3:47 
GeneralVista Issue [modified] Pin
Brady Kelly9-Nov-07 2:03
Brady Kelly9-Nov-07 2:03 
GeneralRe: Vista Issue Pin
_Zorro_9-Nov-07 2:40
professional_Zorro_9-Nov-07 2:40 
GeneralRe: Vista Issue Pin
Brady Kelly9-Nov-07 2:43
Brady Kelly9-Nov-07 2:43 
GeneralRe: Vista Issue Pin
_Zorro_9-Nov-07 3:17
professional_Zorro_9-Nov-07 3:17 
GeneralRe: Vista Issue Pin
KarstenK9-Nov-07 3:16
mveKarstenK9-Nov-07 3:16 
GeneralRe: Vista Issue Pin
Michael Potter9-Nov-07 3:31
Michael Potter9-Nov-07 3:31 
Questionglobal variable Pin
SVb.net9-Nov-07 1:36
SVb.net9-Nov-07 1:36 
AnswerRe: global variable Pin
pmarfleet9-Nov-07 3:49
pmarfleet9-Nov-07 3:49 
AnswerRe: global variable Pin
Pete O'Hanlon9-Nov-07 10:51
mvePete O'Hanlon9-Nov-07 10:51 
QuestionHow to secure Data sources in browser ??? Pin
QPun8-Nov-07 22:36
QPun8-Nov-07 22:36 
AnswerRe: How to secure Data sources in browser ??? Pin
QPun11-Nov-07 14:04
QPun11-Nov-07 14:04 
QuestionEquivalent of Sequence Pin
M. J. Jaya Chitra8-Nov-07 21:48
M. J. Jaya Chitra8-Nov-07 21:48 
AnswerRe: Equivalent of Sequence Pin
andyharman9-Nov-07 3:20
professionalandyharman9-Nov-07 3: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.