Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tquery results

Status
Not open for further replies.

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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top