- This topic has 29 replies, 8 voices, and was last updated 20 years, 1 month ago by Riyad Kalla.
-
AuthorPosts
-
johannescarlenMemberI monitored the SQL from myeclipse and found that it must be simple (?) to add real support for HSQLDB. Myeclipse tries to do
SELECT * FROM SYSTEM_TABLES WHERE 1=1 AND TABLE_CAT = ‘sa’ AND TABLE_NAME LIKE ‘%’ AND TABLE_TYPE IN (‘TABLE’)
The problem here is the AND TABLE_CAT = ‘sa’ . Wouldn’t it be more easy for myeclipse dev to remove this clause for HSQLDB queries than for the HSQLDB team to add support for catalogs and schemas?
Riyad KallaMemberInteresting, let me ask.
support-jeffMemberI will take a closer look at this to see what was missed. I hate to add vendor-specific hacks in the tool – they have a nasty habit of becoming support nightmares, very fragile.
BTW, how did you capture this sql. I am trying to figure out how to adjust the debug level of HSQL running as a server, but cannot seem to find a way to do it referenced in the user guide. Hints?
support-jeffMemberGood news! I found the bug. There was a concept of a “null” catalog in the original plugin that got accidentally refactored out in 3.8.2. It basically allowed a null value for both catalog and schema name to be used in querying metadata from system tables. This has been fixed in CVS and will be made available in the next release. Thank you all for helping vet this out.
Riyad KallaMemberAnd now you all get a little glimpse as to why we carry Jeff around the office on our shoulders… he’s just THAT GOOD.
johannescarlenMemberGreat! Looking forward to the next release then. Any idea when it will be out?
BTW, start HSQLDB with the flag “-silent false” to get all SQL dumped into std out…
/J
support-jeffMemberCool. Thanx for the tip. As for timing of the next release, I do not know for sure. There is a quick fix being worked on, which should be coming soon.
Riyad KallaMemberDecember-ish. We have a lot on our table for this next release.
dsledgeMemberAny update on the fix for this? I just installed the quick fix release for 3.8.2 and this problem was not fixed in it.
Riyad KallaMemberThe quickfix for 3.8.2 was only 1 single fix related to the JSP validator going nutvs when you are refactoring. I will check on this though with the dev.
Riyad KallaMemberThis fix will be in 3.8.3 (scroll up about 5 posts and note that Jeff says it was fixed).
Neal TovsenMemberI don’t have anything terribly constructive to add, except to point out that the DatabaseManagerSwing tool shipped with Hypersonic doesn’t seem to have any problems displaying schema metadata after login. How does it accomplish this, and would it be terribly difficult to accomodate in the MyEclipse DB Browser?
Considering that Hypersonic is the database shipped in JBoss, and Hibernate is also part of the JBoss group, and that the DBExplorer/Hibernate combination is pretty exciting stuff, it would be more than a “nice to have” to support the combination. I gotta imaginge there are a few people out there using this combo, no?
Neal TovsenMemberGrrrr…silly me. Didn’t realize there was a whole 2nd page to the topic. Wishing there was an “edit post” button…or am I so blind I don’t see that either? Sorry. <blush>
Daniel SerodioMember@support-rkalla wrote:
This fix will be in 3.8.3 (scroll up about 5 posts and note that Jeff says it was fixed).
Any dates for the 3.8.3 release? Judging by the number of related posts, I’d say this issue deserves a Quickfix…
Riyad KallaMemberEarly December is what we are shooting for.
-
AuthorPosts