Discussion Board

Results 1 to 5 of 5
  1. #1
    Registered User schadan's Avatar
    Join Date
    Jul 2009
    Posts
    3
    Hi all,

    I've got the following problem: I've converted successfully a data file consisting of approx. 8000 landmarks to lmx format - opening the file by file manager was possible, but during import of these landmarks the landmark application has crashed (closed without error message). Now, it's still possible to open the landmark application but neither it's possible to see the already imported landmarks (nothing is showed) nor it is possible to import or manual create further landmarks. It seems that the only solution (without device resetting) is to cleanup the default landmark storage. OK, one (clean) way might be to write a code snippet in C++ to do this - but my question is: is there another way, e.g. by identifying the corresponding database file on the device an deleting it? By Y-Browser I was not able to find a file like "eposlm.ldb" or any other "*ldb"-files - what is the name of the default landmark database storage file? Where is it stored under S60 5th edt. on a N97?

    Thanks in advance.
    Last edited by schadan; 2009-08-21 at 21:32. Reason: typo

  2. #2
    Nokia Developer Moderator ltomuta's Avatar
    Join Date
    Sep 2004
    Location
    Tampere, Finland
    Posts
    11,335
    The database is in a private directory so deleting it is not really an option. Then again, searching private folders is not really an option either

    You can try to do cleanup from an application, using the Landmarks API or you can reset the device (after backing-up your other data)

  3. #3
    Registered User schadan's Avatar
    Join Date
    Jul 2009
    Posts
    3
    Hi,

    thanks - ok, let's try it by C++ code. I've compiled the example app LocationLandmarksRefAppForS60 from N97 SDK v1.0. I've changed the code so that each time the application is starting the landmark database is initialized:

    LandmarksEngine.cpp:

    Code:
    TBool CLandmarksEngine::StartInitializeDbIfNecessaryL(
        MLandmarksOperationObserver* aObserver)
        {
        // if (iDb.IsInitializingNeeded())
        if (ETrue)
    		{
            // Create initialize operation
            CPosLmOperation* operation = iDb.InitializeL();
    
            iObserver = aObserver;
            iActiveOperation = EInitializeDb;
            iStatus = KRequestPending;
            SetPriorityAndSetActive();
    
            // Start asynchronous initialization
            TBool reportProgress = ETrue;
            iLmOpWrapper->StartOperation(operation, iStatus, reportProgress);
    
            return ETrue;
            }
        else
            {
            return EFalse;
            }
        }
    When I start the application I found that indeed the application is trying to initialize the database "Database initializing..." but the progress bar is then hanging at approx 99%. I've found in the application and in the library that
    Code:
    CPosLandmarkDatabase::InitializeL
    is used for initializing, but this doesn't seem to work. Is there another way?

    Thanks.

    One addition: Also when I try to delete the complete default database by
    Code:
    CPosLmDatabasemanager::DeleteDatabaseL
    it doesn't work - instead, I get the error message "already in use" also when no application is running on the N97.
    Last edited by schadan; 2009-08-28 at 23:53.

  4. #4
    Registered User schadan's Avatar
    Join Date
    Jul 2009
    Posts
    3
    Sorry - my fault. Of course it was my own application which was opening the default landmark database by OpenL() statement before I've tried to delete it - after changing the code, deletion of default landmark database was possible and my problem has been solved.

  5. #5
    Registered User cluap's Avatar
    Join Date
    Jul 2009
    Posts
    1
    Quote Originally Posted by schadan View Post
    Sorry - my fault. Of course it was my own application which was opening the default landmark database by OpenL() statement before I've tried to delete it - after changing the code, deletion of default landmark database was possible and my problem has been solved.
    I have exatly the same problem and need to delete the landmark database. Unfortunately I am not capable of developing my own application to do this. Is it possible for you to upload an application to do this?

    Many thanks if you are able to help.

    Paul

Similar Threads

  1. N97 Phone Plug-in is released
    By Nokia Ron in forum Themes/Carbide.ui
    Replies: 9
    Last Post: 2012-09-19, 07:59
  2. Open C and cleanup safety?
    By kenley in forum Open C/C++
    Replies: 9
    Last Post: 2009-12-23, 04:45
  3. S60 5th Ed. (N97) and copy/paste
    By billmair in forum Series 40 & S60 Platform Feedback Archive
    Replies: 2
    Last Post: 2009-07-19, 01:55

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
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