jantobola
jantobola

Reputation: 688

Derby database management tool

is there any management tool for Derby database like razorSQL ? I tried to use razorSQL, but it seems to be a not good choice for me.

Upvotes: 1

Views: 7305

Answers (2)

MaDa
MaDa

Reputation: 10762

Here are a few useful Derby tools:

  • Eclipse built-in DataSource Explorer. Fine only for the most basic tasks, table view cannot even order by columns, nor can it filter records, so every such thing must be done by SQL. It's just one notch better than a shell tool.
  • DBVisualizer, free edition. Better than Eclipse's, but the free edition has many deliberate shortcomings, which must be paid for to make them go away.
  • SQuirreL SQL Client is also a useful tool for browsing and manipulating SQL databases via JDBC.

Upvotes: 3

faradaj
faradaj

Reputation: 3689

I had used Derby on Netbeans, and hadn't faced with problems you mentioned. So I can suggest you to use that.

Upvotes: 1

Related Questions