Hi,
I just noticed that both 0.3.x and 0.4.x versions of SQLAlchemy print
compiled query for MySQL without binded parameters, so typical
printout for MySQL looks like

SELECT DISTINCT block.`Path` AS `block_Path` FROM tier0.block WHERE
block.`Path` LIKE %s

while doing the same with ORACLE

SELECT DISTINCT block.path AS block_path
FROM block
WHERE block.path LIKE :block_path

Is there are any reason not to print binded parameters for MySQL or it
is a bug?

Thanks
Valentin.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to