Internal Website Search

31-40 of 200 resultsRefresh

log entry date/time

It would be very useful if each entry in the log file has a date/time stamp. Thanks, Carl   FastModel Ben Schreiber Version 2.2.2 adds date/time stamps to the log. Thank you for your suggestion. support Support

In version 2.5.2_05 does not work greatest by Date

In earlier versions this query worked fine. In version 2.5.2_05 does not work .orderBy(cb.desc(cb.greatest(root.get("createDate").as(Date.class ... build 2.5.2_06 that should fix this regression (of casting to Date). support Support

Entity Update - Is the documentation up to date?

Kevin The online manual is always expected to be up to date with the last ObjectDB version

Database Schema Evolution

of the up to date entity class. This is done automatically in memory each time the entity object is loaded ... . If the old type is inconvertible to the new type (for instance a change from int to Date ... enum types (when applicable). From any date type to any date type.

JPA Query Expressions (JPQL / Criteria)

#criteria_query_literals">Literals and Dates (literal, nullLiteralsubstring, ...). date#date_and_time_in_criteria_queries

Index Definition

">name="u2") Date indexedField5; // unique } java.lang.String. java.util.Date, java.sql.Date, java.sql.Time, java.sql.Timestamp.

Step 2: Entity Class and Persistence Unit

.sql.Date; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax ... ; private String name; private Date signingDate; // Constructors: public Guest ... Date(System.currentTimeMillis()); } // String Representation: @Override public

Step 2: Entity Class and Persistence Unit

.Date; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax ... ; private String name; private Date signingDate; // Constructors: public Guest() { } public Guest(String name) { this.name = name; this.signingDate = new Date

Step 2: Entity Class and Persistence Unit

; import java.io.Serializable; import java.sql.Date; import javax.persistence.Entity; import javax ... : @Id @GeneratedValue Long id; private String name; private Date signingDate ... = name; this.signingDate = new Date(System.currentTimeMillis()); } // String

Step 2: Entity Class and Persistence Unit

-java">package guest; import java.io.Serializable; import java.sql.Date; import javax ... Date signingDate; // Constructors: public Guest() { } public Guest(String name) { this.name = name; this.signingDate = new Date(System.currentTimeMillis