Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Database Query working on DBMS directly but not in Java

Tags:

java

jpql

I am trying to do things before processing Ingest to KIT DataManager (Code on GitHub, it runs on tomcat7) with a "Staging Processor" …

adding a custom Staging Processor

package edu.kit.dama.mdm.content.mets;

public class TryQuota extends AbstractStagingProcessor {

@Override
public final void performPreTransferProcessing(TransferTaskContainer pContainer) throws StagingProcessorException {

trying to get user data

… this works

        UserData userResult = null;
        try {
            userResult = mdm.findSingleResult(
                        "Select u FROM UserData u WHERE u.email=?1",
                        new Object[]{"[email protected]"},

standard email of admin user with userid 1

                        UserData.class
                    );
        } catch (UnauthorizedAccessAttemptException e2) {
            System.out.println("exception on extracting userid");
                    e2.printStackTrace();
        }
        try {
            System.out.println("KIT DM ID: " + userResult.getUserId());
        }catch(Exception e4) {
            System.out.println("exception on output for userid");
            e4.printStackTrace();
        }

trying to get quota from UserQuota

and on the other hand, the corresponding implementation doesn't do the job here (that I want to get working)

        Number UserQuota = null;
        try {
            UserQuota = mdm.findSingleResult(
 //SQL would be: "SELECT quota FROM userquota WHERE uid=?;"
 //JPQL is …
                    "Select q.quota FROM UserQuota q WHERE q.uid=?1",
                    new Object[]{1},
                    Number.class
            );
        } catch (UnauthorizedAccessAttemptException e2) {
            System.out.println("exception on userquota");
            e2.printStackTrace();
        }
        System.out.println("quota is: " + UserQuota );

UserQuota is still null here

DB is PostgreSQL, Table is:

CREATE SEQUENCE userquota_seq       
    START WITH 1
    INCREMENT BY 1
    NO MAXVALUE
    NO MINVALUE;

CREATE TABLE userquota
( 
   id INTEGER NOT NULL DEFAULT nextval('userquota_seq'),
   uid INTEGER NOT NULL DEFAULT 0,
   quota DECIMAL NOT NULL DEFAULT 0,        
   CONSTRAINT uid_key UNIQUE (uid), 
   CONSTRAINT fk_uid FOREIGN KEY (uid) REFERENCES users(id)     
);

This quota I want to get from db in the processor

INSERT INTO userquota (id, uid,quota) VALUES ( 0, 1, 1048576 );

So mainly I want to get the entry for the ingesting user (here 1) from db: 1048576 as a Long.

Any hints welcome on how to proceed on these things.

like image 689
vv01f Avatar asked May 02 '17 07:05

vv01f


1 Answers

As stated in above comment, the following statement is invalid SQL syntax:

SELECT u FROM UserData u WHERE u.email=?1

Instead, according to above comment the correct syntax would be:

SELECT u.* FROM UserData u WHERE u.email='[email protected]'

like image 193
lax1089 Avatar answered Oct 19 '22 23:10

lax1089