on 2013 Jan 04 2:15 PM
Hello, I have some publications in my ultralite database responsible for sync pieces of the whole database. When I try to sync an isolated publication it works fine and also works as well when I try to sync all publications together separated by a comma. Like this:
ul_sync_info ul_info; ul_info.publications = "Pub1,Pub2";
But when I try to use the asterisk to sync all publications together without specifing their names I got an fatal error in the iOS Platform (Bad Access). Like this:
ul_sync_info ul_info; ul_info.publications = "*";
It's important to know that my sync works fine when I don't fill this field and this is my current workaround for this problem.
I'm using the EBF 3819 (Mac OSX) and this problem doesn't reproduce in old versions.
Request clarification before answering.
As well as Tim's suggest to use "*"
instead of @"*"
, another alternative would be to use the UL_SYNC_ALL_PUBS
constant:
ul_info.publications = UL_SYNC_ALL_PUBS;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
47 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.