Sync2DB Forum
September 08, 2010, 12:27:30 am
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News
:
Home
Help
Search
Login
Register
Sync2DB Forum
>
For developers/database owners
>
Tips and Tricks
>
About correct field mapping in Outlook Contacts
Pages: [
1
]
« previous
next »
Print
Author
Topic: About correct field mapping in Outlook Contacts (Read 1078 times)
Developer team
Administrator
Sr. Member
Posts: 46
About correct field mapping in Outlook Contacts
«
on:
June 12, 2009, 11:25:33 am »
It is recommended that you always include the following fields in mapping so that Outlook contact items could be more correctly filled in: FullName, FileAs and Subject. It is important during downloading when new items are created within the Outlook. If you do not include these fields, the created contact items will not look good in Outlook.
To prevent uploading of these fields back to database (several fields cannot be uploaded into one database column at the same time), please use CanRead=false as described in the sample below:
<mapping>
<PropertyName>FullName</PropertyName>
<ColumnName>full_name</ColumnName>
</mapping>
<mapping>
<PropertyName>FileAs</PropertyName>
<CanRead>false</CanRead>
<ColumnName>full_name</ColumnName>
<Description>The best value is the same as FullName</Description>
</mapping>
<mapping>
<PropertyName>Subject</PropertyName>
<CanRead>false</CanRead>
<ColumnName>full_name</ColumnName>
<Description>The best value is the same as FullName</Description>
</mapping>
If your database table contains separate columns for first, last and, possibly, middle names, you can create a view in the database and concatenate them into one field.
Sync2DB Developer Team
Logged
Sync2DB Developer Team
Pages: [
1
]
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
General
-----------------------------
=> News
=> General Discussion
=> Functionality
=> Bug and problem reporting
-----------------------------
For developers/database owners
-----------------------------
=> Functionality
=> Various databases peculiarities
=> Security
=> Tips and Tricks
=> Troubleshooting
=> Bug and problem reporting
Loading...