Is there a reason for that? Seems like an odd choice when you've got MySQL which already has user authentication and permissions inbuilt.
Sqlite is more suited to a data store for a small application with non-concurrent access, not so great when you've got multiple applications and multiple users potentially accessing the same databases at the same time - you tend to get bogged down with db locks since file-based dbs are way slower.