Namespaces
Variants
Actions
(Redirected from How to use contact database)

Archived:How to use contact database in PySymbian

Jump to: navigation, search
Archived.png
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.

All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata

Article
Created: cyke64 (15 Mar 2007)
Last edited: hamishwillee (31 May 2013)

With contact module you can access and modify your S60 phone contact database : add new person, phone, email, etc.

Here's a short example :

import contacts
db = contacts.open()
 
all_ids = db.keys() # [159, 161, 273, ...]
c = db[db.keys()[0]] # first contact
found = db.find('jim') # search in name, email, etc.
jim = found[0] # first one found
 
jim_id = jim.id # 819
mobile = jim.find('mobile_number')[0].value # first only
firstname = jim.find('first_name')[0].value
# other fields: email_address, url, company_name, job_title,
# phone_number, fax_number, note, etc.
 
# to add new contact
newc = db.add_contact()
newc.add_field('first_name', 'Cyke64')
newc.add_field('mobile_number', '0111111111')
newc.commit()
 
# to delete a contact
#Get its ID
con = db.find('Angelina')[0]
id=con.id
#Delete it
del db[id]
This page was last modified on 31 May 2013, at 04:09.
145 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved