Close and finalize this statement

Property definitions

sqlite3 $ Statement :: close
	# Close and finalize this statement
	fun close
	do
		if not is_open then return

		is_open = false
		native_statement.finalize
	end
lib/sqlite3/sqlite3.nit:136,2--143,4