pounard / goat-query

Goat SQL query builder built over a PHP to SQL and SQL to PHP type converter
GNU General Public License v2.0
2 stars 0 forks source link

Asynchronous perform #30

Open pounard opened 4 years ago

pounard commented 4 years ago

Actual ->perform() does not fetch any results and ask the server for none when possible, yet it remains synchronous.

Add an asynchronous variant of perform, which can name the query, that would return an object able to query for running query state.

This seems possible (and easy) with ext-pgsql, not sure it will be possible with PDO.