2 messages in com.googlegroups.sqlalchemy[sqlalchemy] query on stdout
FromSent OnAttachments
vkuznet28 Mar 2008 08:01 
Andreas Kostyrka28 Mar 2008 08:58 
Subject:[sqlalchemy] query on stdout
From:vkuznet (vkuz@gmail.com)
Date:03/28/2008 08:01:21 AM
List:com.googlegroups.sqlalchemy

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.