On Tuesday, 18 April 2017 at 11:43:24 UTC, Suliman wrote:
I am writing app that extract data from DB to array of structures.

        void getSingleTrackInfo()
        {
                
                foreach(item; getTablesGPSSensorList)
                {
                        ResultRange result = mysqlconnection.query(sqlquery);
                        auto MySQLPointsLonLat = result.array;
Is ResultRange closing query when exhausted? Did you try to call .close() on it after work?

Reply via email to