About config
Chapter 6 - Configuration
Explains how to configure and tune ObjectDB, the fast Java object database for JPA/JDO. The ObjectDB configuration file contains one <objectdb> root element with seven subelements: <objectdb > <general > ... </general > <database > ... </database > ...
Replication error - parsing objectdb config
I'm trying to replicate a database using the following config: <server> <connection port="6136" max="100" /> <data path="$objectdb/db-files" /> <replication url="objectdb://localhost:6126/DEV1/NewMessagePipe.odb;user=admin;password=admin" /> </server> ... I'm trying to replicate a database using the following config: <server> <connection port="6136" ... exception below. Is there something wrong with my config? Caused by: com.objectdb.o.UserException: Failed to validate xml ...
config file for embedded database
Hi, I'm going back to embedded mode after some time with client/server mode. Question: how does the embedded jar find it's config file? Dave ps: thanks for the improvements to the explorer - still need a way to view (view only) an open embedded database. ... Question: how does the embedded jar find it's config file? Dave ps: thanks for the improvements to the ...
config file for embedded database
Hi, I'm going back to embedded mode after some time with client/server mode. Question: how does the embedded jar find it's config file? Dave ps: thanks for the improvements to the explorer - still need a way to view (view only) an open embedded database. ... Question: how does the embedded jar find it's config file? Dave ps: thanks for the improvements to the ...
Entity Management Config questions
Hi, the manual states the following regarding config of Entities: http://www.objectdb.com/java/jpa/setting/entities : <cache ref="weak" level2="0mb" /> The <cache> element specifies settings of the two cache mechanisms for entities:... Hi, the manual states the following regarding config of Entities: http://www.objectdb.com/java/jpa/setting/entities : ...
Drop in Client/server mode not working
Hi, can't seem to get drop to work in c/s mode: version: objectdb-2.3.5_04 config: <extensions drop="tmp" /> url: 'objectdb://localhost/testStorage1.tmp;drop;user=admin;password=admin' suggestions? David ... c/s mode: version : objectdb-2.3.5_04 config : <extensions drop="tmp" /> url : ...
objectdb.conf Information
Hello, Is it possible to get detailed information on objectdb.conf client vs server? We do have an objectdb.conf for our client and one for our server instance. Now there're several questions: - Which config entries are relevant for the client and which one for the server? I.e. what about: <cascade-persist always="true" on-persist="false" on-commit="true" /> we want to activate enhancer agent, guess this is client right? activation-code - guess this is required for server only right? ... Now there're several questions: - Which config entries are relevant for the client and which one for the server? I.e. ... and/or server) xml elements from the client and the server config? edit ...
ObjectDB Roles and Groups
Hello, How can I incorporate roles/group in ObjectDB config file? I see no support for this. For example, I would like to place several users under a given group or role, but I see no way of doing this as no such element is present in the config file. Is it possible to have this? ... How can I incorporate roles/group in ObjectDB config file? I see no support for this. For example, I would ... of doing this as no such element is present in the config file. Is it possible to have this? ...
Support for roles/groups in ObjectDB
ObjectDB should incorporate roles/group in ObjectDB config file? I see no support for this. I would like to place several users under a given group or role, but I see no way of doing this as no such element is present in the config file. Maybe under the $default, or any particular user, there could be a role/group element which would categorise the user further. This would help in authentication. Thanks ... ObjectDB should incorporate roles/group in ObjectDB config file? I see no support for this. I would like to place ... of doing this as no such element is present in the config file. Maybe under the $default, or any particular user, there ...
enumeration table? howto on pure jpa ?
Hello , I've relational db , and there is some table named enumerations with , some key and values.We will migrate to objectdb. Our problem is , we want to store some keys and values for global application configs. Like; tablename : enumeration table rows: key value ... i make set , get servername I will directly set or get config from server. I know there is no field value on Column annotation ...