Submits a query to the server and waits for the result returns the ExecStatustype of the query

Property definitions

postgresql $ NativePostgres :: exec
  # Submits a query to the server and waits for the result returns the ExecStatustype of the query
  fun exec(query: Text): NativePGResult import Text.to_cstring `{
    PGresult *res = PQexec(self, Text_to_cstring(query));
    return res;
  `}
lib/postgresql/native_postgres.nit:95,3--99,4