On Fri, 2005-04-22 at 08:56 +0200, [EMAIL PROTECTED] wrote:
> 3. SQLite
> SQLite is developed for these types of applications. 1 user, local 
> datasets, quick access, etc.
> But many problems with it:
> - it have only english "order by" lang support

You can add "order by" support for any language you want
with the sqlite3_create_collation() API. 

> - it is not suppports functions like upper/lower (with hun chars)

Use the sqlite3_create_function() API to replace the built-in
upper/lower functions with versions that work on your language.

-- 
D. Richard Hipp <[EMAIL PROTECTED]>

Reply via email to