We have a website that uses SQL (currently SQLite3) to store entrants into a competition & the server side language is python & uses the module sqlite3. It turns out that the webhost runs python 2.4 & the module sqlite3 is only available in python 2.6/2,7 & up.
So I need to be able to write competition entrants to my SQL database in python using only python 2.4.
It would be great if I could get SSH access & install python 2.7 but ofcourse this webhost wants our business to purchase VPS access to do this & this is not possible.
I have read that I could import python SQL modules using the following code but it fails when I run this script on the website(in the CGI-bin folder):
try:
import sqlite3
except ImportError:
from pysqlite import dbapi2 as sqlite3
I am thinking of just using MySQL because I have heard it is faster but is there a python MYSQL module & does it work on python 2.4? Do you have any advice on how I can write & store competition entries to my my SQL database in python 2.4?