im working on python application that requiring database connections..I had developed my application with sqlite3 but it start showing the error(the database is locked).. so I decided to use MySQL database instead.. and it is pretty good with no error.. the only one problem is that I need to ask every user using my application to install MySQL server on his pc (appserv for example) .. so can I make mysql to be like sqlite3 apart of python lib. so I can produce a python script can be converted into exe file by the tool pyInstaller.exe and no need to install mysql server by users???
update: after reviewing the code I found opened connection not closed correctly and work fine with sqllite3 ..thank you every body