Legacy Knowledge Base
Published Sep. 10, 2025

How to print a query string with parameter values

Written By

Sergio Alonso

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

Legacy Article

You are viewing an article from our legacy "FastTrack" publication program, made available for informational purposes. Articles in this program were published without a requirement for independent editing or verification and are provided"as is" without guarantee.

Before using any information from this article, independently verify its suitability for your situation and project.

Issue

  • When the property

hibernate.show_sql=true

is set, the SQL statements executed are shown in the system log, but with bind variables. For example:

Hibernate: SELECT COUNT(*) AS col_0_0_ FROM BlogsEntry blogsentry0_ WHERE (blogsentry0_.displayDate < ?) AND (blogsentry0_.status = ?) AND blogsentry0_.ctCollectionId = 0
  • How to get the values of these variables?

Environment

  • 2024.q4.2

Resolution

  • Adding the following log category with the TRACE level:

org.hibernate.type.descriptor.sql.BasicBinder
  • Now, SQL statements are followed with de bind variables values:
Hibernate: SELECT COUNT(*) AS col_0_0_ FROM BlogsEntry blogsentry0_ WHERE (blogsentry0_.displayDate < ?) AND (blogsentry0_.status = ?) AND blogsentry0_.ctCollectionId = 0 
2024-04-04 13:22:15.444 TRACE [liferay/scheduler_dispatch-5][BasicBinder:64] binding parameter [1] as [TIMESTAMP] - [2024-04-04 13:22:15.444]
2024-04-04 13:22:15.445 TRACE [liferay/scheduler_dispatch-5][BasicBinder:64] binding parameter [2] as [INTEGER] - [7]

 

 

 

Did this article resolve your issue ?

Legacy Knowledge Base