Replace in the DB with a statement beginning with "REPLACE", followed by rest

This method does not escape special characters.

Property definitions

sqlite3 $ Sqlite3DB :: replace
	# Replace in the DB with a statement beginning with "REPLACE", followed by `rest`
	#
	# This method does not escape special characters.
	fun replace(rest: Text): Bool do return execute("REPLACE " + rest)
lib/sqlite3/sqlite3.nit:85,2--88,67