Select from the DB with a statement beginning with "SELECT ", followed by rest

This method does not escape special characters.

Property definitions

sqlite3 $ Sqlite3DB :: select
	# Select from the DB with a statement beginning with "SELECT ", followed by `rest`
	#
	# This method does not escape special characters.
	fun select(rest: Text): nullable Statement do return prepare("SELECT " + rest)
lib/sqlite3/sqlite3.nit:90,2--93,79