-- Phonebook documentation - File phonebook Hylapex now can have a phonebook using a shared sqlite db, so there is no more the need to have a "real" db like mysql / odbc for have a shared phonebook. Create it it's very simple: you need an sqlite db and say to hylapex to use it through the phonebook configuration. If you haven't yet an sqlite db, ther is two ways (at least) for create a new one: - with an hylapex trickle: create a new "local" phonebook (that are an sqlite3 db ;) ), move it to a shared folder and configure your and other hylapex clients to use it (using the phonebook file type). When you create the "local" one, it'll be in: - windows: documents and settings\*user*\local data\unipex\hylapex\local_XXX.db - unix: ~.unipex/hylapex/local_XXX.db where XXX are the phonebook name that you wrote - download the sqlite console program at sqlite.org and create a db with some simple passes: (on my developer machine, but the same on your *nix/windows pc) michele:~$ sqlite3 my_db.db SQLite version 3.5.1 Enter ".help" for instructions sqlite> create table my_phone_book (id primary key, company_name text, fax_number text); sqlite> .quit michele:~$ ls -l my_db.db -rw-r--r-- 1 michele michele 3072 2008-02-21 12:19 my_db.db michele:~$ - Others: To-do