Close this connection to the DB and all open statements

Property definitions

sqlite3 $ Sqlite3DB :: close
	# Close this connection to the DB and all open statements
	fun close
	do
		if not is_open then return

		is_open = false

		# close open statements
		for stmt in open_statements do if stmt.is_open then
			stmt.close
		end

		native_connection.close
	end
lib/sqlite3/sqlite3.nit:42,2--55,4