Internal Website Search

1-50 of 52 results

Server User List

and specifies their specific settings ( username , password, permissions, quota). The default configuration ... : The required username and password attributes specify a username and a password ... " for the username attribute indicates a virtual master user definition. All the settings of that master

ObjectDB Explorer Exposes Username and Password

How can I prevent my embedded database's username and password from being exposed by ObjectDB ... If I understand correctly, if someone were to remove the configuration file, the username ... anyone from accessing my embedded database without knowing the username and password? billdotnet Bill Note

Login Error (bad username 'admin' or password)

I am getting following error when i am trying to connect to server: [com.objectdb.o._PersistenceException: Login Error (bad username 'admin' or password)] with root cause com.objectdb.o.UserException: Login Error (bad username 'admin' or password) at com.objectdb.o.MSG.d(MSG.java:61) at com

Database Connection using JPA

part of an ObjectDB connection URL: user - for specifying a username in client server mode. password ... content (useful for tests). To connect to an ObjectDB server registered username and password ... ://localhost/myDbFile.odb;user=admin;password=admin"); This is equivalent to specifying a username

Privacy Policy

information may include, but is not limited to: email address, username , full name, user name, profile

JPA Persistence Unit

properties. JPA 2 defines standard properties for specifying database url, username and password, as

General Settings and Logging

with URLs. Saving username and password with the URL makes accessing recently used databases in

Database Explorer

select File Open C/S Connection...  and provide host, port, username and password for a client

SSL Configuration

from any machine as long as a valid username and password are provided. If authenticating 

failure to enforce NOT NULL for java.lang.String

.IDENTITY) private Long id; @Unique @Persistent(nullValue=NullValue.EXCEPTION) private String username ... getUsername() { return username ; } public void setUsername(String username ) { this. username = username ... the database with username =null. the target/ directory is wiped out by `mvn clean` so i am certain

Spring Data JPA

._PersistenceException: Login Error (bad username 'anonymous' or password) at org.springframework.beans ... ) Caused by: com.objectdb.o._PersistenceException: Login Error (bad username 'anonymous' or password ... : Login Error (bad username 'anonymous' or password) at com.objectdb.o.MSG.d(MSG.java:61) at com.objectdb

Find the error...JPA ENTITY HIBERNATE

") @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; @Column(name = " username ") private String username ; @Column(name = "password") private String password; @Column(name = "email") private ... void setId(int id) {   this.id = id; } public String getUsername() {   return username

[ODB1] Chapter 5 - JDO Connections

checking. Username and password are optional in a client server connection only when the server configuration allows anonymous access to the database. If not specified here, username and password ... : System.out.println("Database URL: " + pmf.getConnectionURL()); System.out.println(" Username : " + pmf

Trouble bug on explorer

; private String userName ; private String pwd; private String ircim; private String mail; private int ... (int id) { this.id = id; } public final String getUserName() { return userName ; } public final void setUserName(String userName ) { this. userName = userName ; } public final String getPwd() { return pwd

PersistenceManagerFactory.setConnectionUserName(userName) - JDO Method

JDO Method in javax.jdo.PersistenceManagerFactory void setConnectionUserName (   String  userName ) Set the user name for the data store connection. Parameters: userName - the user name for the data store connection. Since: JDO 1.0

Mismatch client-server protocol prefix

username ) {         Query q = em.createQuery("SELECT t FROM TrackerUser t WHERE t. username = :uname");         q.setParameter("uname", username );         TrackerUser result = null;   

enumeration table? how to on pure jpa?

;      value servername 127.0.0.1 serverPort 4444 username test password ... like below ? @Column(field="servername") private String serverName; @Column(field=" username ") private String username ; @Column(field="serverPort") private Integer serverPort;     

com.objectdb.o.InternalException: Unexpected internal exception

. userName = : userName " ) I execute the query as follows: em.getMetamodel().managedType(Person.class); List pList = em.createNamedQuery("getPersonByName",Person.class).setParameter(" userName ", name

Replication error - parsing objectdb config

\objectdb.conf line 38: cvc-complex-type.4: Attribute ' username ' must appear on element 'replication ... ) ... 96 more Caused by: org.xml.sax.SAXParseException: cvc-complex-type.4: Attribute ' username ... . The username attribute was removed in the last version but the old XML schema validation

JPA does not seem to be db agnostic

).     public Friendship getFriendship(String username ) { CriteriaBuilder ... .class); Root root = query.from(Friendship.class); Path path = root. get(" username "); query.where(criteriaBuilder.equal(path, username )); return em.createQuery(query).getSingleResult(); } kasavbere kasav

[ODB1] Chapter 8 - ObjectDB Server

may also be used by multi user applications (such as web applications) where the same username and password ... and password attributes specify a username and a password to be used when connecting to the server ... and allow connections from any machine, as long as valid username and password are provided

openejb jpa jaas module

String username ; private char[] password; private Map options; /** * User. */ protected String login ... = entityManager.find( UserInfo.class , username ); if(info != null) { String password = info

Get list of database files

;             host, port, username ... ;          host, port, username , password, path

How to enhance the JPA/Spring/MVC to implement RESTfull for CURL client?

;   private GuestDao guestDao; @RequestMapping(value = "/user/{ username }", method = org ... .springframework.web.bind.annotation.PathVariable String username ) {   return guestDao.getAllGuests

JPA-Query does not lead to any result

help us what the problem is? SELECT FROM UserModelData usr WHERE usr. userName = 'admin' Attached ... . skolb Sebastian Kolb The query is executed using an index on field userName . In not-working.odb

Problem connecting to the replicated server

try to specify a username /password for the master server. support Support Hi I have tried that, when I do that it will say "Login Error (bad username 'masterUserName' or password) (error 575)" Trianglehead Json Error

performance limit

' username ' Runing this query on 150.000 records gives 126 results in 15 ms for user A. Using this query for username B gives 6500 results in 1700 ms. We will hit 1 milion records wery soon and aplication

order by string with numbers

  The sql that works is ORDER BY CAST(SUBSTR( username FROM 4) AS UNSIGNED) ASC Using JPQL SELECT u FROM Users u ORDER BY SUBSTRING(u. username ,4)*1 ASC If you have other alternative for JPA

Need disk usage and delete some old files

;host, port, username , password, false); and specific directory (and possibly file) using: File dir = com.objectdb.Utilities.getServerFileSystem(     host, port, username , password

ODBC - How to create a DSN connection in Window

Hi, is there a way to set DSN of ObjectDB in windows for excel data analysis? 搜索 复制 gzdillon Lai Yang You can use the connection URL , including protocol, host, port, path, username and password (when applicable) as DSN of ObjectDB databases. However, ObjectDB does not support ODBC or JDBC

Changes in detach behaviour?

". If you use version 2.3.4 then the output is " username ". I think lazy fetching of primitive fields is a bit

_PersistenceException: Failed to open file

Hello! I am experiencing a problem: JBWEB000309: type JBWEB000066: Exception report JBWEB000068: message com.objectdb.o._PersistenceException: Failed to open file '/Users/ username /JBossSoftware/jboss-eap-6.2/bin/$objectdb:/localhost:8080/db/guests.odb' the path in persistence.xml

Suspected memory leak

You can use FTP to upload large files: Host: objectdb.com, Username : public, Password: public support

Entity not removed 100%

after refresh. Could you please change your username from "Unknown" to something less confusing? Thanks! support Support

programmatic activation

Wondering if there is documentation for this class: com.objectdb. Activator Specifically: Is it possible to programmatically activate ObjectDB, ie: to pass in username , password, site key, and get back a link? This would help significantly with activation in server environments. dmoshal

Dirty checking

two entities: class Company{ String company_name List users } class User{ String username } Now assume

there is a free version?

when I run my project from eclipse the console ask me, besides username and password, the license key, but I want to use it for free. How can I do? unozer asd Please check what exactly you are running in Eclipse. According to your description it seems that your main class is the ObjectDB Activator

OutofMemory error with Object DB 2.0

. You can upload a large heap dump to ObjectDB public FTP server: Host: objectdb.com, Username : public

data protection method in ObjectDB Embedded Mode

I am new in ObjectDB and i need to understand How is data protection in ObjectDB Embedded Mode without using  username or password thanks choymns choymns The way to keep an ObjectDB database encrypted is simply to store it on an encrypted drive. Modern operating systems support encryption

100% CPU when using multiple BETWEEN

. Could you please upload the file (in a zip format) to our FTP server: Host: objectdb.com, Username : public

Out of memory

Lukasz Walkowski OK. You can use FTP to upload large files: Host: objectdb.com, Username : public

[ODB1] Chapter 9 - ObjectDB Explorer

the Open dialog you have to fill in the host, port, username and password of the remote connection

2.9.x query issue with @Unique constraint

userName ; .. } select u from User u where (u. userName = : userName or : userName is null) // null input for : userName parameter 2.8.9 Query plan description ============================ [Step 1] Scan type ... ] Filter the results of step 2 retaining only results that satisfy: or((: userName ==null),(u. userName

Cannot activate ObjectDB

. Everything was OK (I stated username , password etc), and I got the web address for activation. But opening the web ... Neumann Unfortunately there is an issue with the error message when a bad username /password ... the log we see the real error: "Unknown username or bad password." Please try again, and make sure

Internal Exception and Index Problems

". Try to change the userName attribute of this entry then the following error occurs: Unexpected ... userName is not synchronized with the index on that field. It is unclear how this happened ... the corrupted field userName =...). Even the doctor finds no error which makes it pretty hard to find

Internal Exception: null

The query SELECT COUNT(t) FROM TrackerUser t WHERE NOT t. username = : username with : username - "admin" leads to the following exception: com.objectdb.o.InternalException: null com.objectdb.o.InternalException at com.objectdb.o.InternalException.f(InternalException.java:236) at com.objectdb.o.WSP.h

File lock exception on odb$

._PersistenceException: Failed to open file '/Users/ username /JBossSoftware/jboss-eap-6.2/bin/$objectdb

ObjectDB 2.4.1

Fixed a bug of  duplicating new objects during merge . Fixed a username /password issue in using EntityManagerFactory 's getMetamodel . Fixed a bug in detachment of hollow objects on close ( issue #799 ). Fixed a Doctor exception ( issue #796 ). Fixed a Doctor bug in checking byte[] arrays

Monitoring and Performance counters

for each open connection, see: database name that it is connected to Client username and IP address

javax.jdo.PersistenceManagerFactory

connection. Since: JDO 1.0 void setConnectionUserName (String  userName ) Set the user name for the data store connection. Parameters: userName - the user name for the data store connection