Where to see the stored data in derby database in j2me

谁说胖子不能爱 提交于 2019-12-02 07:12:56

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

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

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