I am new bee in ANDROID , so for that I am unable to view, delete, insert data into database(SQLite), from command Prompt. I have installed my ANDROID in \"F:\\PROJECTS\\AND
You can't access your db from promt. Your database is located at /data/data/your.package/databases/your_db so it's in your application's private directory e.g no other applications have access to it. So one solution is to have rooted phone. And the other is to copy the file from your's applications directory to the sdcard and then handle it as normal. So from your application you have to do something like this in your application
copyFile("/data/data/your.package/databases/your_db", "/sdcard/your_db");