Fórum

Custom SQL vs Dynamic SQL: is there any performance differences?

thumbnail
Riya M S, modificado 11 Anos atrás.

Custom SQL vs Dynamic SQL: is there any performance differences?

Junior Member Postagens: 45 Data de Entrada: 30/01/13 Postagens Recentes
Hi Everyone,

Just wondering: is there any significant performance difference between Custom SQL and Dynamic SQL?

Let's assume the following scenario:
- the target database is an MySQL
- the adapter will be called by a real time interface;
- the interface will be called by multiple clients concurrently - let's stick with 10 at a given moment;
- the interface needs to query the database to check if the value is valid, and return the result.

Given the following SQL (Custom SQL):

select colA, colB
from aSchema.aTable
where colA = ?
and colB = ?

and (Dynamic SQL):

select colA, colB
from ${schema}.aTable
where colA = ${paramA}
and colB = ${paramB}

and a third case (Dynamic SQL):

select colA, colB
from ${schema}.aTable
where colA = ?
and colB = ?


Analyzing just only the JDBC adapter service portion: is there any significant performance difference between Custom SQL and Dynamic SQL?
thumbnail
David H Nebinger, modificado 11 Anos atrás.

RE: Custom SQL vs Dynamic SQL: is there any performance differences?

Liferay Legend Postagens: 14919 Data de Entrada: 02/09/06 Postagens Recentes
This is not a Liferay question. It is more appropriate to post to the MySQL forums instead.
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: Custom SQL vs Dynamic SQL: is there any performance differences?

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
I think what you really want to know is about caching.
Dynamic SQL is just dynamic sql in hibernate.