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

This method does not escape special characters.

Property definitions

sqlite3 $ Sqlite3DB :: 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/sqlite3/sqlite3.nit:80,2--83,65