- This topic has 29 replies, 8 voices, and was last updated 20 years, 7 months ago by
Riyad Kalla.
-
AuthorPosts
-
October 5, 2004 at 4:12 am #216857
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?
October 5, 2004 at 8:40 am #216870
Riyad KallaMemberInteresting, let me ask.
October 5, 2004 at 9:30 pm #216948
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?
October 5, 2004 at 10:23 pm #216955
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.
October 5, 2004 at 10:28 pm #216958
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.
October 6, 2004 at 3:39 am #216966
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
October 6, 2004 at 6:25 am #216973
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.
October 6, 2004 at 8:35 am #216979
Riyad KallaMemberDecember-ish. We have a lot on our table for this next release.
October 16, 2004 at 9:48 pm #217845
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.
October 17, 2004 at 7:32 pm #217871
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.
October 18, 2004 at 8:16 am #217888
Riyad KallaMemberThis fix will be in 3.8.3 (scroll up about 5 posts and note that Jeff says it was fixed).
October 27, 2004 at 10:30 am #218378
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?
October 27, 2004 at 10:33 am #218379
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>
November 17, 2004 at 3:59 pm #219587
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…
November 17, 2004 at 4:11 pm #219588
Riyad KallaMemberEarly December is what we are shooting for.
-
AuthorPosts