|
|
Choosing A Webhost: |
Re: Cannot browse object tree nodes: msg#00042db.squirrel-sql.users
On 10/27/06, Lars Heill <Lars.Heill@xxxxxxx> wrote: > > Have a nice weekend - and thanks for chasing this! > Lars, I'm downloading HADB for linux now. However, I found the real problem. It has to do with the fact that everything that comes back from HADB is right-padded to be 32-chars. So, when we ask DatabaseMetaData for table in the schema using DatabaseMetaData.getTables, it tells us that the type of the table is "TABLE " And when we look for whether or not we cache these objects in SchemaInfoCache.containsType(String[] types, String type) we do the following: if(type.equals(types[i])) // line: 211 And types[] contains "TABLE" so we never find it, and skip over it in SchemaInfoCache.getITableInfos at line 921: if(false == SchemaInfoCache.containsType(types, iTableInfo.getType())) { continue; } Not sure what that code is trying to do - but I didn't write it so that's not really saying much. In any case, it seems to me that your database (HADB) is playing tricks on us with all that right-padding. I changed line 211 above to look like: if(type.trim().equalsIgnoreCase(types[i])) and I see tables now. So I'll check that into CVS and you can check out the next snapshot when you have time and let me know if that solves the problem. There was one other user (Bernard) who noted this same symptom with MS-SQLServer, so CC'ing the list and I'm hopeful that this addresses the problem there as well. Rob ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: Issue with Squirrel 2.3, Rowe, Neville |
|---|---|
| Next by Date: | Re: Any way to export table graph to jpeg/gif/clipboard?, Gerd Wagner |
| Previous by Thread: | Re: Cannot browse object tree nodes, Lars Heill |
| Next by Thread: | Re: Cannot browse object tree nodes, Lars Heill |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
Free MagazinesCisco NewsReceive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business. subscribe Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field. subscribe The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business. subscribe Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. subscribe Total Telecom Total Telecom is "The Economist of the communications industry". subscribe |