I follow this tutorial http://www.vogella.com/articles/JavaPersistenceAPI/article.html and I and did section 4 ,I run the main program and I saw in console that the entries created,my qustion is how can I see the table that created and the entries inside of it ,where can I find it ?
Asked
Active
Viewed 73 times
0
-
You can find your table in the database. No? If you use H2 or HSQLDB - you may open DB file an see them there. – Archer Jan 14 '13 at 11:11
-
I think derby should generate DB file also. However I'm usure, never used Derby – Archer Jan 14 '13 at 13:14
-
Correct but I didnt find the tables entries – Stefan Strooves Jan 14 '13 at 14:04
1 Answers
1
Could be that Derby stores its data not in plain text but in something other. Can't help this way. You should look for the way to connect to Derby database with some Viewer application and open that table. Read this thread: Is there a tool other than ij to look into a local derby database (folder)?
-
Thanks I download it ,I have the jar file of the derby so how should I configure it since it ask for URL and I dont know if I have one and how to provide it...any idea? – Stefan Strooves Jan 14 '13 at 14:57
-