Hi,
I cut and paste from the Symbian white paper for Database access:
http://www.symbian.com/developer/tec...dex%2Dold.html
The following code shows an example of how to open a database for client-server access.
RDbs dbSession;
1. User::LeaveIfError(dbSession.Connect());
CleanupClosePushL(dbSession);
RDbNamedDatabase database;
2. User::LeaveIfError(database.Open(dbSession, KDatabaseName));
CleanupClosePushL(database);
... //Use database
CleanupStack::Pop(); // database
CleanupStack::Pop(); // dbSession
3. database.Close();
4. dbSession.Close();
At #2, I got a "Feature Not Supported" displayed in a popup in the emulator and on my phone.
Is Rdbs supported in Series 60?
Thanks.
--John





