Close this connection

Property definitions

sqlite3 $ NativeSqlite3 :: close
	# Close this connection
	fun close `{
#if SQLITE_VERSION_NUMBER >= 3007014
		sqlite3_close_v2(self);
#else
		// A program using the older version should not rely on the garbage-collector
		// to close its connections. They must be closed manually after the associated
		// prepare statements have been finalized.
		sqlite3_close(self);
#endif
	`}
lib/sqlite3/native_sqlite3.nit:153,2--163,3