Convert ResultSet to List of Associted Array

Steven Schveighoffer via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Aug 1 07:14:27 PDT 2017


On 7/30/17 1:02 PM, Jshah wrote:
> On Sunday, 30 July 2017 at 16:39:05 UTC, Jshah wrote:
>> Hi
>>
>> I am new to D writing a web service with vibe.
>>
>> My webservice connect to mysql and return the result
>> as JSON.
>>
>> How do I convert resultset to Array of Associated Array
>> [["col1" : value, "col2" : value], ....]
> 
> I am using mysql-native

Variant[string][] realresult;
realresult.reserve(resultset.length);
while(!resultset.empty)
{
    realresult ~= resultset.asAA;
}

-Steve


More information about the Digitalmars-d-learn mailing list