Click here to Skip to main content
15,881,424 members
Home / Discussions / Java
   

Java

 
GeneralRe: Sending BufferedImage thought a socket Pin
jschell23-Dec-21 5:29
jschell23-Dec-21 5:29 
AnswerRe: Sending BufferedImage thought a socket Pin
Gerry Schmitz25-Oct-21 8:35
mveGerry Schmitz25-Oct-21 8:35 
AnswerRe: Sending BufferedImage thought a socket Pin
Joop Eggen 202125-Nov-21 6:15
Joop Eggen 202125-Nov-21 6:15 
QuestionJava Programming Challenge Pin
Purvesh Ptdr24-Sep-21 18:22
Purvesh Ptdr24-Sep-21 18:22 
QuestionRe: Java Programming Challenge Pin
Richard MacCutchan24-Sep-21 21:19
mveRichard MacCutchan24-Sep-21 21:19 
Questionjava jshell beanshell eval string Pin
Majid Karimi27-Aug-21 23:45
Majid Karimi27-Aug-21 23:45 
AnswerRe: java jshell beanshell eval string Pin
jschell5-Sep-21 8:55
jschell5-Sep-21 8:55 
QuestionDefault Casting a column to type using Hibernate Pin
ficevivu3-Aug-21 19:50
ficevivu3-Aug-21 19:50 
I've been dealing with a problem in my application that has me forced to change the HibernateQuery in a way that casts the existing DateTime column I have within my database into a date for further processing. Confused | :confused:

I've looked around a little on here already and found a supposed solution using sqlGroupProjection which ended up looking like this for me.


Java
Projection dp = Projections.sqlGroupProjection("CAST("+sp.getIname()+" AS DATE",
                                                                   "CAST("+sp.getIname()+" AS DATE",
                                                                   new String[] {sp.getIname()},
                                                                   new Type[] {StandardBasicTypes.DATE});



This does work to some the extent that it now generates this in the SQL statement

CAST(ierstelltAm AS DATE)

Which would be correct if it wasn't for the fact that something is now missing. Usually when Hibernate generates these statements they're given unique identifiers, one of them being y[i]_ and the other somehow relating to the table/entity used in the syntax of entity[i]_.

Since these are all inbuilt hibernate functions I had expected the above method to generate something along these lines

CAST(auftrag8_.IErstelltAm AS DATE) as y1_

based on the fact that the code previously generated using the criteria system did look like this.

auftrag8_.IErstelltAm as y1_

The question is now how do I correctly cast something to another data type using hibernate criterie, if it's not the sqlGroupProjection method mentioned in other places -- or is this a syntactical/logical error on my part?
QuestionHow to make a scrolling background for a JPanel in java? Pin
Mr.Corona13-Jul-21 1:51
Mr.Corona13-Jul-21 1:51 
QuestionRe: How to make a scrolling background for a JPanel in java? Pin
Richard MacCutchan13-Jul-21 2:37
mveRichard MacCutchan13-Jul-21 2:37 
AnswerRe: How to make a scrolling background for a JPanel in java? Pin
Mr.Corona13-Jul-21 2:41
Mr.Corona13-Jul-21 2:41 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Richard MacCutchan13-Jul-21 2:46
mveRichard MacCutchan13-Jul-21 2:46 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Mr.Corona13-Jul-21 2:53
Mr.Corona13-Jul-21 2:53 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Richard MacCutchan13-Jul-21 3:04
mveRichard MacCutchan13-Jul-21 3:04 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Mr.Corona13-Jul-21 3:40
Mr.Corona13-Jul-21 3:40 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Richard MacCutchan13-Jul-21 5:02
mveRichard MacCutchan13-Jul-21 5:02 
GeneralRe: How to make a scrolling background for a JPanel in java? Pin
Mr.Corona13-Jul-21 17:55
Mr.Corona13-Jul-21 17:55 
QuestionHow to read a certificate from USB Token and Print It on Eclipse Console?? Pin
Member 150264029-Jul-21 0:59
Member 150264029-Jul-21 0:59 
QuestionKnowing about jdk Pin
Ranjeet Singh from Unknown7-Jul-21 21:56
Ranjeet Singh from Unknown7-Jul-21 21:56 
AnswerRe: Knowing about jdk Pin
Richard MacCutchan7-Jul-21 22:08
mveRichard MacCutchan7-Jul-21 22:08 
QuestionJava Pin
Ranjeet Singh from Unknown7-Jul-21 21:54
Ranjeet Singh from Unknown7-Jul-21 21:54 
AnswerRe: Java Pin
Richard MacCutchan7-Jul-21 22:07
mveRichard MacCutchan7-Jul-21 22:07 
GeneralRe: Java Pin
Ranjeet Singh from Unknown7-Jul-21 22:12
Ranjeet Singh from Unknown7-Jul-21 22:12 
GeneralRe: Java Pin
Richard MacCutchan7-Jul-21 22:39
mveRichard MacCutchan7-Jul-21 22:39 
GeneralRe: Java Pin
Ranjeet Singh from Unknown7-Jul-21 23:39
Ranjeet Singh from Unknown7-Jul-21 23:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.