Actually, the reason I am asking is because I'd like to "wrap" my application ( a gallery script) around websitebaker.
Many of my clients do not have a hosting account that includes MySQL, so I need some kind of cms that can use only text files.
PHP 5 has sqlite built-in that can do this, and there are a few "text database" classes for older versions of PHP.
All of them can take standard SQL and use normal text files as the database... the "trick" is that the script/application must be abstracted from the database calls, so that the alternative "db" can be used.
I hope that makes sense. Basically, instead of hardcoding mysql PHP functions into websitebaker, what is needed is to use generic "query" and "update" functions, which then call the specific function for whatever database type is being used... whether it's mysql, oracle, mssql, or sqlite or any other SQL standards-compliant architecture.
But I guess this is not possible with websitebaker.

Thanks!