Thanx cprince, i can see that this thread started long time ago but it solved my problem

. Anyway, for me was only a curiosity, to see if i can save my contact list and phones numbers.
I made an account here to thank you for this thread, but also to answear b3k1m1. I had the same problem, but my mistake was that i didn't download the AdressBook.sqlitedb i downloaded AdressBook.sqlite which is not the good db.
The file is located in /private/var/mobile/Library/Adressbook . If you do the exact procedure described by cprince you will be able to do it just fine. As a sidenote, if you are in linux and in a folder with only root privileges you might not be able to create the output file... as i tried to do

.
Again thanx cprince !
PS:
If you want only to visualize the contacts and the phone numbers you can do the following:
sqlite>.mode line
sqlite>.output stdout ( it is already set by default so change it only if you made some changes to the output method)
sqlite>.separator , (or whatever separator you want to use)
sqlite>.tables (if you want to visualise all the tables found inside the database)
sqlite>select First, Last, value from ABPerson, ABMultiValue where ROWID=record_id;
I made some minor modifications to the select comand, it's not necesary to see also the rowid so like this you can see only the first name, last name and phone number. Also, if you want to make teh output file like this you can cahnge the .output stdout command with .output your_contacts_file.csv