Is there a way to make a python module load a dll in my application directory rather than the version that came with the python installation, without making changes to the pytho
If your version of sqlite is in sys.path before the systems version it will use that. So you can either put it in the current directory or change the PYTHONPATH environment variable to do that.