Im using the ado components to connect to an ms sql database. I know how to show the result of a query in db grid. But i want to store the results as string in an array for example. Is this possible or is there another way to use the query results?
|
|
I think you will have to write the code yourself to parse the recordset and put the values into an array. |
||
|
|
|
There's no direct way to do that, however I use AdoQuery.Recordset.GetString to get the record as string, here's an example I use to export the Data to CSV file.
|
||
|
|
|
|
You can access any of the resulting fields by code. The dataset contains all of the records, but you will have to navigate through each one in code:
|
||||
|
|
|
You can use ADORecordSet.GetRows to get your data into an array. This is a common practice in ASP to speed up the page load - rather than looping thru a recordset, you get the data into an array, close the recordset, and loop the array to display the contents. I think can be applied in Delphi too, with success.
var
...
TableContents : OleVariant;
...
begin
...
ADORecordSet.Open('select * FROM MyTable', ADOConnection, adOpenForwardOnly,
adLockReadOnly, adCmdText);
TableContents := ADORecordSet.GetRows(adGetRowsRest,EmptyParam,EmptyParam);
someText := TableContents[1,1];
...
end;
Hope it helps. |
||
|
|
