On Mo, 2011-06-20 at 15:28 +0100, Laurent Emil wrote: > I wanna use sqlite as backend for data synchronisation instead of > syncevolution DB . How can I do that ? where should i modify in code > or in file configuration ?
You can look at the existing sqlite backend (src/backends/sqlite) as a starting point for synchronizing with data stored in sqlite. You'll have to write code, there is no configuration mechanism. Another alternative would be to enable the use of the Synthesis ODBC backend and hook that up to sqlite. I don't know whether ODBC supports sqlite, nor have I ever tried to use the ODBC backend with SyncEvolution. It might be as simple as creating a backend which doesn't do anything in its own code and instead just returns the right XML config in getSynthesisInfo(). Not possible right now, but could be easily added. Look at SyncSourceBase::getDatastoreXML(). > also How can i get the xml messages exchanged between the > syncevolution client and the server ( Funambol server for example ) ? > I mean explicit xml messages not the logs detailed > syncevolution-log.html ? Run with loglevel=3 for the translated messages (written as they get parsed, works for WBXML as well as XML) or loglevel=4 (also dumps the original message, without translation). -- Best Regards, Patrick Ohly The content of this message is my personal opinion only and although I am an employee of Intel, the statements I make here in no way represent Intel's position on the issue, nor am I authorized to speak on behalf of Intel on this matter. _______________________________________________ SyncEvolution mailing list [email protected] http://lists.syncevolution.org/listinfo/syncevolution
