ObjectDB Database Search
1-50 of 200 resultsObjectDB 2.x is working without any activation code and it is working without any activation code . Is it is bug in objectdb or it works without activation code also. I am saving some information into the some.odb file and reading the informatin without any problem. What exactly is the activation code for ? Thanks & regards, Binit Bhaskar binitbhaskar | |
Hitting Evaluation Limit After Code Rollback In error, we deployed code to production that was compiled on a machine without a valid license key. We have since rolled the code back, however our other production servers that access the same database files (that were touched by the unsigned code ) are still encountering | |
Concerning coding style of the example in the posting instructions with reference to the coding example in the posting instructions and many of your other examples posted in the forums. While I appreciate the recommended coding style as shown makes for convenient minimal examples ... and examples, it is not a compliant coding style. Webel webel Dr Darren Kelly Your observation is correct | |
Deadlock in objectdb code Running multi-threaded access to an embedded database using JDO, I'm getting a deadlock in objectdb code . Thread dump attached. sjzlondon Steve Zara Thank you for this report. The thread dump ... in the code . Is there a convenient way to introduce classes to objectdb at the start of a run | |
setting activation code in persistence.xml or env file or system properties Wondering if it's possible to add the activation code either: - in persistence.xml - or in a .env file - or system properties dmoshal David Moshal These options are not supported. However, you can embed the configuration file with the activation code as a resource, e.g. by replacing the objectdb | |
Start ObjectDB inside java code. , you should be able to run it also from your own code by calling the main method directly:   ... but how and where do i activate those line of code now? i mean where do i put the   | |
Gradle-Kotlin Code Contributions to have a thread where people could post and find Gradle-Kotlin code potentially useful to ObjectDB | |
Eclipse Public License - v 1.0 code and documentation distributed under this Agreement, and b) in the case of each subsequent ... , if any, and such derivative works, in source code and object code form. b) Subject to the terms ... the Contribution of such Contributor, if any, in source code and object code form. This patent | |
SELECT clause (JPQL / Criteria API) performance and can sometimes reduce the amount of Java code needed. Note that query results ... ( c.name ), and the second is the capital city name ( c.capital.name ). The following code ... = capitalName; } } The following code demonstrates how to run this query: String queryStr = "SELECT | |
JPA Class Enhancer to be enhanced. Enhancement improves efficiency in three ways: Enhanced code enables efficient tracking ... explained in Chapter 3 ). Special code is added to enhanced classes that automatically notifies ObjectDB whenever a persistent field is modified. Enhanced code enables lazy loading of entities | |
Step 7: Run the Spring Web App automatic enhancement ( weaving ) in Tomcat it has to be run with ObjectDB as a Java agent ( javaagent:objectdb.jar). When using GlassFish - on the fly enhancement ( weaving ) is automatically enabled | |
Database Management Settings and 1,000,000 entities per database), you must specify a valid activation code in an element. Activation codes are generated by running the Activator utility from the command line: $ java -cp objectdb.jar com.objectdb.Activator Each computer requires a specific activation code , but you can specify | |
Setting and Tuning of JPA Queries the page number (starting from 0 for the first page), the following code retrieves the results ... instance, em , are visible to any code that uses em , even before the transaction is committed ... to all result objects that the query retrieves. For example, the following code sets a pessimistic WRITE | |
Apache License, Version 2.0, January 2004 to software source code , documentation source, and configuration files. "Object" form shall mean any form ... to compiled object code , generated documentation, and conversions to other media types. "Work" shall ... , including but not limited to communication on electronic mailing lists, source code control systems | |
FROM clause (JPQL / Criteria API) a criteria query by using the following code : CriteriaQuery q = cb. createQuery (Country.class); Root ... a criteria query by using the following code : CriteriaQuery q = cb. createQuery (Country.class ... .capital can be built as a criteria query by using the following code : CriteriaQuery q = cb | |
JPA Named Queries named queries instead of dynamic queries can improve code organization by separating JPQL query strings from Java code . This practice also enforces the use of query parameters instead of embedding ... (MyEntity.class); After running this code , ObjectDB includes MyEntity when searching for named queries. | |
Storing JPA Entities code stores an Employee entity class instance in the database: Employee employee = new Employee ... the EntityManager , or by commit . Referenced embedded objects The following code stores an Employee instance | |
What are the main benefits of using ObjectDB?. The ability to store ordinary objects in the database directly can simplify the code significantly. Less (and more simple) code to write, debug and test, as well as a much easier learning curve leads | |
JPA Query API em in the following code snippets). The EntityManager serves as a factory for both Query ... ("SELECT c FROM Country c", Country.class); In the preceding code , the same JPQL query | |
Getting an error when adding activation code to conf file Hello, When I add an activation code to my objectdb.conf file, I get the following exception ... .o.RCL. (RCL.java:36) ... 8 more If I remove the activation code from my configuration file, I ... with my activation code . I am adding my activation code to my config file as such:   | |
Enhancer: non-zero exit code at exceptions Hello, we have found that the enhancer returned an non-zero exit code on errors. You can change this so that the error of the enhancers can be detected. btc_es BTC EmbeddedSystems Thank you for this report. Starting build 2.6.1_04 the Enhancer exits with non zero code on errors. Note | |
Can't open DB-file with explorer, but from within my code it works-file programatically (from within my code ) without any errors 4) the db doctor ends without error | |
JPA Entity Fields its methods or code . This state is reflected by its persistent fields, including fields inherited from | |
JPA Named Queries Annotations Jakarta Persistence (JPA) provides annotations to define static, reusable queries at the class level, separating query logic from business code . Query definitions Declare named queries using the following annotations: Specifies a static, named query in the Jakarta Persistence Query Language (JPQL | |
Schema Update The configuration element supports renaming packages, classes, and fields in ObjectDB databases. This is a complementary operation to renaming or moving these elements in your IDE during source code refactoring. You specify only these schema changes in the configuration file. As explained in | |
Is ObjectDB better than competing object databases?, supporting community, forums, IDEs support, tools, books, tutorials and sample code . ObjectDB | |
Logical Operators in JPQL and Criteria API), cb. isTrue (isInEU)); In the preceding code , non- Predicate Boolean expressions are converted | |
Literals in JPQL and Criteria Queries in Java code . The name of the entity class is not enclosed in quotation marks because type literals | |
ObjectDB - JPA Object Database for Java - start writing more effective database code using Java classes and objects! Try an ObjectDB / JPA | |
Defining a JPA Entity Class classes When you store an entity in the database, its methods and code are not stored | |
[ODB1] Chapter 6 - Persistent Objects the following code : pm.currentTransaction().begin(); Person person = new Person("George", "Bush"); Address ... code is legal and equivalent to the code above: Person person = new Person("George", "Bush"); Address ... ( ... ) ). Persistence By Reachability The Address instance in the code above also starts out as a transient object | |
Step 3: Add a Context Listener Class source file with the following code : package guest; import javax.persistence.*; import javax.servlet ... = (EntityManagerFactory)e.getServletContext().getAttribute("emf"); emf.close(); } } The code above: Invokes | |
[ODB1] Chapter 2 - A Quick Tour a list of two strings "Hello World 0" and "Hello World 1". Program Source Code The program consists ... Source Code In addition to the two files from the previous section ( Person.java and package.jdo ... , is obtained using JDO portable code (slightly more complicated than the equivalent code in section 2 | |
[ODB1] Chapter 9 - ObjectDB Explorer at the moment of query execution with Java code that implements the query. You can use that code to export JDOQL queries that you test in the Explorer into your Java code . Refreshing the Cache ... only when the code of these methods is available using the specified classpath. The "Server Configuration | |
[ODB1] Chapter 3 - Persistent Classes store methods and code . Only the state of the object as reflected by its persistent fields is stored ... the byte code of compiled classes. Classes to be enhanced must be located in class files and not in ... the byte code of these classes, and the result is classes that do implement the PersistenceCapable | |
Step 2: Entity Class and Persistence Unit and paste to replace the new source file content with the following code : package guest; import java.io | |
Eclipse/JPA Spring MVC Web Tutorial slightly different but the code would be the same). The tutorial is based on using a Maven project | |
Step 4: Add a Controller Class the new Spring Controller class. Now replace the content of the new source file with the following code | |
Step 2: Define a JPA Entity Class the new class. Copy and paste the following code into the newly created Point class: package tutorial | |
Step 4: Add a Servlet Class to create the new servlet class. Now replace the content of the new source file with the following code | |
Getting Started with JPA and Eclipse well (dialog boxes and menus might look slightly different but the code would be the same). This tutorial consists of the following steps: | |
NetBeans/JPA Web Application Tutorial with other NetBeans versions as well (dialog boxes and menus might look slightly different but the code | |
Step 2: Entity Class and Persistence Unit to replace the new source file content with the following code : package guest; import java.io | |
Step 3: Define an EJB Session Bean) class. Now replace the content of the new source file with the following code : package guest; import | |
Step 3: Define a Spring DAO Component replace the content of the new source file with the following code : package guest; import java.util.List | |
NetBeans/JPA Spring MVC Web Tutorial slightly different but the code would be the same). The tutorial is based on using a Maven project | |
Step 2: Entity Class and Persistence Unit and paste to replace the new source file content with the following code : package guest; import | |
Step 3: Add a Main Class to create the class. Copy and paste the following code to the newly created class file: package | |
Step 3: Add a Main Class In this step we will add code to the Main class (that was generated with the project) in order to store Point objects in the database and then retrieve them from the database. Use copy and paste to replace the content of the Main class with the following content: package tutorial; import javax | |
Step 4: Add a Controller Class replace the content of the new source file with the following code : package guest; import javax.servlet |