Guest_imported
New member
- Jan 1, 1970
- 0
I've got a database application that I'm building for fun. I access the database with:
sqlQuery1->Close();
sqlQuery1->SQL->Clear();
sqlQuery1->UniDirectional = true;
if (!sqlQuery1->Prepared){
sqlQuery1->Prepare();
}
sqlQuery1->SQL->Add(sqlStatement);
sqlQuery1->Open();
Now, I'm confused. How do I access what the statement returns? The sql statements would be SELECT * FROM's, but how do I access those results?
sqlQuery1->Close();
sqlQuery1->SQL->Clear();
sqlQuery1->UniDirectional = true;
if (!sqlQuery1->Prepared){
sqlQuery1->Prepare();
}
sqlQuery1->SQL->Add(sqlStatement);
sqlQuery1->Open();
Now, I'm confused. How do I access what the statement returns? The sql statements would be SELECT * FROM's, but how do I access those results?