I have the below SQL Script which is running fine in MySQL:
=============================================
set @Sunday1WeekAgo = subdate(curdate(),date_format(curdate(),'%w')+7);
select COUNT(DISTINCT TITLE) PagesCreated
from CONTENT
where CONTENTTYPE='PAGE' AND SPACEID is not null
AND creationdate>=@Sunday1WeekAgo
=============================================
But when I put it in Pocket Query SQL statement, it can be executed well.
the page has this error information:
There were errors executing this statement.
There were errors executing this statement. Please check whether the following parameters are given: []. If the parameters are correct or no parameters are required, something must be wrong with the query or the database connection. Use the debug mode for a error trace and/or contact your administrator.
Is it beacuse PocketQuery macro cannot identify mySQL var - @Sunday1WeekAgo ?
Anyone can help?
Actually, this has nothing to do with the PocketQuery macro itself but with the underlying Spring-JDBC implementation. Have you tried the workaround provided by Christian?
Actually, this has nothing to do with the PocketQuery macro itself but with the underlying Spring-JDBC implementation. Have you tried the workaround provided by Christian?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Probably the Spring JDBC Query is having problems with the SET command before the SELECT statement. Why not using this statement?
Just an idea,
Christian
select COUNT(DISTINCT TITLE) PagesCreated from CONTENT where CONTENTTYPE='PAGE' AND SPACEID is not null having creationdate>=subdate(curdate(),date_format(curdate(),'%w')+7);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've made a short test with a starting SET command and got an org.springframework.jdbc.BadSqlGrammarException exception
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kai,
can you please activate debug mode by checking the debug checkbox in the PocketQuery macro? You will then see the stack trace of the error. Please provide that error message here and I will analyse your problem further.
Regards,
Felix
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.