Insert in the DB with a statement beginning with "INSERT ", followed by rest

This method does not escape special characters.

Property definitions

postgresql $ Postgres :: insert
  # Insert in the DB with a statement beginning with "INSERT ", followed by `rest`
  #
  # This method does not escape special characters.
  fun insert(rest: Text): Bool do return execute("INSERT " + rest)
lib/postgresql/postgres.nit:114,3--117,66