Clean Up

Clean up is an easy process. All you need to do is close all open cursors, and close all open database connections. Each cursor and each database connection has a 'close' function, call this for each instance you have created.

		# Close all cursors
		cur.close()
		# Close all databases
		db.close()
<-- Home -->