Hi folks,

I've written an insert query generator utility. Works as follows:

{
     insert_query q("some_table");
     q["name"] = "John";
     q["location"] = "UK";
     // ...
     q.execute(connection);
}

There may be several problems, which can be improved later, but how about the idea? Do you guys think it may be useful and can be included in the distribution?

Thanks,

Emre Turkay