<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
I'm trying to see the queries the actual query code that is submitted to the database when I perform a find on a model.<br><br>I've tried:<br><br>1) Adding $ENV{DBIC_TRACE}++ to the MyApp.pm<br>2) Setting the Windows7 Environment variable DBIC_TRACE to 1<br>3) Setting my run configuration in Eclispe with the arguments -d -r AND Environment&nbsp; DBIC_TRACE = 1<br><br>Each time I run the myapp_server.pl -d -r it does not show the query executed.<br><br><br>Ideally Executing :<br><br>$c-&gt;model("MyDatabase::UserAccount")-&gt;find({&nbsp; realm =&gt; $c-&gt;user-&gt;auth_realm,&nbsp;&nbsp; key =&gt; $c-&gt;user-&gt;url }); <br><br>Would show the query below in STDOUT<br><br>SELECT * FROM UserAccount where realm = '&lt;user realm&gt;' AND key ='&lt;user url&gt;';<br><br>I'm running in a windows environment with strawberry perl and using Eclipse.<br>                                               </body>
</html>