Where to see the stored data in derby database in j2me

后端 未结 2 503
礼貌的吻别
礼貌的吻别 2021-01-23 19:06

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 m

相关标签:
2条回答
  • 2021-01-23 19:35

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

    0 讨论(0)
  • 2021-01-23 19:55

    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

    0 讨论(0)
提交回复
热议问题