Where to see the stored data in derby database in j2me

删除回忆录丶 提交于 2019-12-20 04:09:25

问题


I created MIDlet class which contains name and number and i used RecordStore to store the data in apache derby database.The program is executing successfully.Now i want to see my entered data in derby database.Please help me where i can see.I am using netbeans IDE.


回答1:


The database data is stored in files in the filesystem. The exact location of those files is controlled by the JDBC connection URL that you specified when you opened the database. Generally this URL describes a filesystem path. If the path is an absolute path, look there. If it is a relative path, look for the location relative to the current directory where your program was running.

Here's more information: http://db.apache.org/derby/docs/10.9/devguide/cdevdvlp40724.html




回答2:


In netbeans: services -databases-connect your database-display data find you user display-Right click on the table and view data.



来源:https://stackoverflow.com/questions/15247712/where-to-see-the-stored-data-in-derby-database-in-j2me

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!