stablekernel / postgresql-dart

Dart PostgreSQL driver: supports extended query format, binary protocol and statement reuse.
https://www.dartdocs.org/documentation/postgres/latest
BSD 3-Clause "New" or "Revised" License
129 stars 32 forks source link

Can you make new one method like just return "List<map<String,object>>" without table name #169

Closed ItdaTeam closed 1 year ago

ItdaTeam commented 2 years ago

First of all, thank you for making such a nice package.

There is one thing that is too inconvenient while using it, so I would like to ask for improvement.

I usually prefer the List<map<String,object>> form when making queries, but in the case of this package, the table name is attached in front of it, so it is inconvenient to have to parse everything.

With respect to mappedResultsQuery

We ask if there is a way to get only the returned column row in the form of List<map<String,object>> without getting the table name from the method.

isoos commented 2 years ago

@ItdaTeam: