User f5e6ccf034
17-12-2005 00:20:09
I can't find out. It would be useful if you would collect the answer for all supported dbs in a table and put it in your FAQ or manual.
Thanks,
-- O.L.
Thanks,
-- O.L.
User f5e6ccf034
17-12-2005 00:20:09
ChemAxon 9c0afc9aaf
17-12-2005 19:21:03
Code: |
select cd_id from mytable where cd_id=1; |
Code: |
select cd_id from mytable where cd_id in (1); |
ChemAxon fa971619eb
17-12-2005 19:56:52
User f5e6ccf034
18-12-2005 03:49:37
ChemAxon 9c0afc9aaf
19-12-2005 20:07:12
Quote: |
Since the API is supposedly the same, I hope ChemAxon can release a minor version of JChem that removes this restriction: that should be completely trivial. |
Quote: |
On the other hand I'm a bit worried about cached mode causing the app to have an unreasonable memory footprint... |
Quote: |
Furthermore, in cached mode, what does the db bring to the table? Why not simply pull the data from flat files? |
User f5e6ccf034
19-12-2005 20:56:47
Quote: |
As a temporary solution we can treat HXSQL as HSQLDB, we will make that change for the next JChem release. |
Quote: |
JChem uses a highly optimized method of caching data that is relevant for the search process. It has a much smaller memory footprint than caching the same data in the database. |
Quote: |
Usually JChem is only a part of a company database, where a lot of other data is stored. |
ChemAxon 9c0afc9aaf
20-12-2005 10:06:15
Quote: |
How will I know that it is out? I still don't get email whenever a new version is released. |
Quote: |
Now, in in-process mode one already has a full copy of the data in one's process |
Quote: |
CACHED tables are created with the CREATE CACHED TABLE command. Only part of their data or indexes is held in memory, allowing large tables that would otherwise take up to several hundred megabytes of memory. |
Quote: |
Yes but in my scenario (embedded db) none of that plays any role and if JChem could populate its cache from, say, one big cssdf file, that would really have enormously simplified the development of this particular application. Maybe a feature for a future version? |
User f5e6ccf034
20-12-2005 13:22:45
ChemAxon 9c0afc9aaf
20-12-2005 14:56:33
Quote: |
So when using the cached feature of JChem, one should set the HSQLDB cache size to a very small value, right? Do you have a rule of thumb for what's the minimum cache size that will work? |