<!--
RSS generated by JIRA (5.2.7#850-sha1:b2af0c8dc8537b36121c6a579fabbdf79fc919e5) at Mon May 20 02:40:32 UTC 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://www.doctrine-project.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+DBAL+AND+status+%3D+Closed+ORDER+BY+priority+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://www.doctrine-project.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Doctrine Project</title>
        <link>http://www.doctrine-project.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+DBAL+AND+status+%3D+Closed+ORDER+BY+priority+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="23" total="23"/>
                <build-info>
            <version>5.2.7</version>
            <build-number>850</build-number>
            <build-date>21-02-2013</build-date>
        </build-info>
<item>
            <title>[DBAL-48] Doctrine\DBAL\Platforms\MsSqlPlatform Incorrect Offset Limit Sql</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-48</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;The way the offset query is constructed (line 473) it always pulls the top records from the query even when and offset is present, so if you have an offset of 0 and limit of 10 you get the first 10 records. When you change the offset to 5 you still get the first 10 records from the original query. This issue was also in the 1.2 driver code. &lt;/p&gt;

&lt;p&gt;This is basically what gets created when an offset is present with a limit of 10 and an offset of 5 :&lt;br/&gt;
SELECT * FROM &lt;br/&gt;
   (SELECT TOP 10 * FROM &lt;br/&gt;
      (SELECT TOP 15&lt;br/&gt;
         col1, col2, colN FROM table&lt;br/&gt;
      ) AS &lt;span class=&quot;error&quot;&gt;&amp;#91;inner_tbl&amp;#93;&lt;/span&gt;&lt;br/&gt;
   ) AS &lt;span class=&quot;error&quot;&gt;&amp;#91;outer_tbl&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;The fix is to reconstruct the query to remove the outer_tbl SELECT TOP and make it something like the following:&lt;br/&gt;
SELECT * FROM (&lt;br/&gt;
SELECT TOP &lt;span class=&quot;error&quot;&gt;&amp;#91;limit&amp;#93;&lt;/span&gt; ROW_NUMBER() OVER (ORDER BY &lt;span class=&quot;error&quot;&gt;&amp;#91;primary_key&amp;#93;&lt;/span&gt;) as RowNum, col1, col2, colN FROM table&lt;br/&gt;
) as &lt;span class=&quot;error&quot;&gt;&amp;#91;inner_tbl&amp;#93;&lt;/span&gt; WHERE &lt;span class=&quot;error&quot;&gt;&amp;#91;inner_tbl&amp;#93;&lt;/span&gt;.RowNum BETWEEN &lt;span class=&quot;error&quot;&gt;&amp;#91;offset&amp;#93;&lt;/span&gt; AND &lt;span class=&quot;error&quot;&gt;&amp;#91;limit + offset&amp;#93;&lt;/span&gt;&lt;/p&gt;</description>
                <environment>All MSSQL</environment>
            <key id="11881">DBAL-48</key>
            <summary>Doctrine\DBAL\Platforms\MsSqlPlatform Incorrect Offset Limit Sql</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                                <assignee username="juokaz">Juozas Kaziukenas</assignee>
                                <reporter username="scottsweep">Scott Connelly</reporter>
                        <labels>
                    </labels>
                <created>Sat, 4 Sep 2010 05:10:44 +0000</created>
                <updated>Sun, 14 Nov 2010 06:53:50 +0000</updated>
                    <resolved>Sun, 14 Nov 2010 06:53:50 +0000</resolved>
                                                            <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="14732" author="juokaz" created="Sun, 14 Nov 2010 06:53:50 +0000"  >&lt;p&gt;This is fixed in current master &lt;a href=&quot;https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Platforms/MsSqlPlatform.php#L555&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Platforms/MsSqlPlatform.php#L555&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Unless this ticket is referring to Doctrine 1&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-77] Mysql Numeric / Decimal fields</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-77</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;class product {&lt;br/&gt;
/**&lt;br/&gt;
*Column(type=&quot;decimal&quot;, scale=&quot;2&quot;)&lt;br/&gt;
*&lt;br/&gt;
*/&lt;br/&gt;
private $discount;&lt;br/&gt;
}&lt;/p&gt;

&lt;p&gt;generate SQL &lt;/p&gt;

&lt;p&gt;create table product {&lt;br/&gt;
discount DECIMAL(10,2) NOT NULL&lt;br/&gt;
}&lt;/p&gt;

&lt;p&gt;if you have a field in a database type DECIMAL doctrine tries to &lt;br/&gt;
generate for him diff &lt;/p&gt;

&lt;p&gt;doctrine orm:schema-tool&lt;br/&gt;
&amp;gt; &lt;br/&gt;
ALTER TABLE product CHANGE discrount discrount NUMERIC (10, 2) NOT NULL &lt;/p&gt;


&lt;p&gt;but mysql ignore the alter, as a result of these diff stretch from &lt;br/&gt;
migration to migration&lt;/p&gt;</description>
                <environment>mysql 5.1.49 for debian-linux-gnu (x86_64), Ubuntu 10.10 Doctrine DBAL Beta4 Doctrine ORM Beta4 Doctrine Common RC1</environment>
            <key id="12226">DBAL-77</key>
            <summary>Mysql Numeric / Decimal fields</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="7">Can&apos;t Fix</resolution>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="eugeneiso">Eugene</reporter>
                        <labels>
                    </labels>
                <created>Mon, 13 Dec 2010 15:35:46 +0000</created>
                <updated>Fri, 4 Jan 2013 19:05:48 +0000</updated>
                    <resolved>Thu, 15 Mar 2012 22:15:55 +0000</resolved>
                            <version>2.0.0-BETA4</version>
                <version>2.0</version>
                <version>2.0.1</version>
                                                        <due></due>
                    <votes>2</votes>
                        <watches>3</watches>
                        <comments>
                    <comment id="14965" author="beberlei" created="Mon, 13 Dec 2010 16:10:43 +0000"  >&lt;p&gt;This is fixed in RC1 or RC2.&lt;/p&gt;</comment>
                    <comment id="15152" author="eugeneiso" created="Thu, 20 Jan 2011 04:28:59 +0000"  >&lt;p&gt;checked for the version of doctrine 2.1.0-DEV&lt;br/&gt;
result is the same&lt;/p&gt;</comment>
                    <comment id="15200" author="extesy" created="Mon, 31 Jan 2011 17:08:41 +0000"  >&lt;p&gt;I have the same issue with the latest doctrine build. Please fix it because it makes schema migration scripts dirty with redundant changes.&lt;/p&gt;</comment>
                    <comment id="15456" author="beberlei" created="Fri, 4 Mar 2011 17:29:28 +0000"  >&lt;p&gt;I cannot reproduce this, does this happen if you also specify precision=10 ?&lt;/p&gt;</comment>
                    <comment id="17600" author="asm89" created="Thu, 15 Mar 2012 22:15:55 +0000"  >&lt;p&gt;Closing until someone can provide more feedback.&lt;/p&gt;</comment>
                    <comment id="19215" author="jsimpson" created="Fri, 4 Jan 2013 19:05:47 +0000"  >&lt;p&gt;I am seeing this bug for a definition specified as:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;@ORM\Column(type=&quot;decimal&quot;, precision=20, scale=0, nullable=false, unique=true)&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Doctrine Command Line Interface version 2.3.2-DEV&lt;/p&gt;

</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-159] Symfony Doctrine Task &quot;doctrine:database:create&quot; fails with &quot;Undefined index: dbname&quot; </title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-159</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;For some reason,when attempting to create a database, the doctrine:database:create task fails complaining that the &quot;dbname&quot; parameter is not found. Printing the $params var from the file &quot;vendor/doctrine-dbal/lib/Doctrine/DBAL/Driver/PDOOracle/Driver.php&quot; indeed shows that the dbname array element is not present. However, it is present in the app/config/parameters.ini (as database_name).&lt;/p&gt;

&lt;p&gt;The following is the method from PDOOracle/Driver.php where the missing &quot;dbname&quot; index is used a few times...  adding the dbname with an appropriate value &lt;br/&gt;
allows the dsn to get created - but Oracle then throws an ORA-00911 error indicating an invalid character in the PDO statement...  However, I&apos;m able to use the output of _constructPdoDsn( ) in a simple standalone connect script (provided below) successfully.&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;    &lt;span class=&quot;code-keyword&quot;&gt;private&lt;/span&gt; function _constructPdoDsn(array $params)
    {
        $params[&apos;dbname&apos;] = &apos;pmdb0&apos;;  &lt;span class=&quot;code-comment&quot;&gt;// Inserted &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; testing by Ed Anderson
&lt;/span&gt;        $dsn = &apos;oci:&apos;;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (isset($params[&apos;host&apos;])) {
            $dsn .= &apos;dbname=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)&apos; .
                   &apos;(HOST=&apos; . $params[&apos;host&apos;] . &apos;)&apos;;

            &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (isset($params[&apos;port&apos;])) {
                $dsn .= &apos;(PORT=&apos; . $params[&apos;port&apos;] . &apos;)&apos;;
            } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
                $dsn .= &apos;(PORT=1521)&apos;;
            }

            $dsn .= &apos;))(CONNECT_DATA=(SERVICE_NAME=&apos; . $params[&apos;dbname&apos;] . &apos;)))&apos;;
        } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
            $dsn .= &apos;dbname=&apos; . $params[&apos;dbname&apos;];
        }

        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (isset($params[&apos;charset&apos;])) {
            $dsn .= &apos;;charset=&apos; . $params[&apos;charset&apos;];
        }

        print( $dsn ); &lt;span class=&quot;code-comment&quot;&gt;// Inserted to extract the constructed DSN and test in an external php script...
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; $dsn;
    }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;--------   Script created using the output of _constructPdoDsn( ) follows -----   This script works fine...&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;$dsn = &apos;oci:dbname=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=pmdb0.mydomain.net)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=pmdb0)));charset=UTF8&apos;;
$user = &apos;pmcore&apos;;
$pass = &apos;mypaswd&apos;;

&lt;span class=&quot;code-keyword&quot;&gt;try&lt;/span&gt;
{
    $dbh = &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; PDO( $dsn, $user, $pass );

    &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;( $dbh )
    {
        print( &lt;span class=&quot;code-quote&quot;&gt;&quot;Connected to PDO using: &quot;&lt;/span&gt; . $dsn . &lt;span class=&quot;code-quote&quot;&gt;&quot;\n&quot;&lt;/span&gt;);
        unset( $dbh );
    }
}

&lt;span class=&quot;code-keyword&quot;&gt;catch&lt;/span&gt;( PDOException $e )
{
    print( &lt;span class=&quot;code-quote&quot;&gt;&quot;ERROR: &quot;&lt;/span&gt; . $e-&amp;gt;getMessage( ) );
    die( );
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;----------------  End Test Script -------------&lt;/p&gt;</description>
                <environment>Symfony 2.0, Doctrine 2.1, PHP 5.3.8 and Oracle 11g-R2 Enterprise</environment>
            <key id="12976">DBAL-159</key>
            <summary>Symfony Doctrine Task &quot;doctrine:database:create&quot; fails with &quot;Undefined index: dbname&quot; </summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                                <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="digitalmechanic">Ed Anderson</reporter>
                        <labels>
                    </labels>
                <created>Thu, 25 Aug 2011 18:17:14 +0000</created>
                <updated>Sun, 30 Oct 2011 19:14:05 +0000</updated>
                    <resolved>Sun, 30 Oct 2011 19:14:05 +0000</resolved>
                            <version>2.1</version>
                                                <component>Drivers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="16376" author="digitalmechanic" created="Thu, 25 Aug 2011 18:55:27 +0000"  >&lt;p&gt;Running the task doctrine:schema:create --dump-sql produces output that will correctly build the tables in the database manually... but this is not ideal obviously. Still can&apos;t seem to find where the &quot;invalid character&quot; is showing  in the statement generated by the PDOOracle Driver or some other file in the DBAL.&lt;/p&gt;</comment>
                    <comment id="16489" author="guilhermeblanco" created="Sat, 17 Sep 2011 16:59:03 +0000"  >&lt;p&gt;Formatted ticket&lt;/p&gt;</comment>
                    <comment id="16732" author="beberlei" created="Sun, 30 Oct 2011 19:13:38 +0000"  >&lt;p&gt;I would advise against using the PDO Oracle driver, as PDO Oracle has bugs and it is not maintained anymore, not even by Oracle. OCI8 is the way to go.&lt;/p&gt;

&lt;p&gt;Also creating a database is not supported in Oracle, since there is no concept database.&lt;/p&gt;</comment>
                    <comment id="16733" author="beberlei" created="Sun, 30 Oct 2011 19:13:56 +0000"  >&lt;p&gt;The parameter name has to be &quot;dbname&quot; in symfony also.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-376] [GH-223] Include customSchemaOptions in column mapping</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-376</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of djlambert:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/223&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/223&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;This PR adds the customSchemaOptions in the array passed to the type.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14193">DBAL-376</key>
            <summary>[GH-223] Include customSchemaOptions in column mapping</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="3">Duplicate</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Mon, 5 Nov 2012 02:28:29 +0000</created>
                <updated>Mon, 14 Jan 2013 15:38:44 +0000</updated>
                    <resolved>Mon, 14 Jan 2013 15:38:44 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="19317" author="ocramius" created="Mon, 14 Jan 2013 15:38:44 +0000"  >&lt;p&gt;Solved in &lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-413&quot; title=&quot;[GH-247] Obtain all informations about a column via Column::toArray()&quot;&gt;&lt;del&gt;DBAL-413&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-368] array and object types should use BLOB, not CLOB, to store serialized data</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-368</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;When using array or object types, PHP&apos;s serialize() is used. Since that can return NUL bytes, using a text type will fail at least on PostgreSQL (just search the web for issues of that kind&#8230;).&lt;/p&gt;

&lt;p&gt;So ArrayType and ObjectType should return a BLOB definition instead of a CLOB definition to be binary-safe.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14143">DBAL-368</key>
            <summary>array and object types should use BLOB, not CLOB, to store serialized data</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="3">Duplicate</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="k-fish">Karsten Dambekalns</reporter>
                        <labels>
                        <label>postgresql</label>
                    </labels>
                <created>Fri, 19 Oct 2012 08:47:01 +0000</created>
                <updated>Wed, 23 Jan 2013 21:54:22 +0000</updated>
                    <resolved>Wed, 23 Jan 2013 21:54:22 +0000</resolved>
                            <version>2.2.2</version>
                                                        <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="18851" author="k-fish" created="Fri, 19 Oct 2012 11:55:53 +0000"  >&lt;p&gt;See &lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-369&quot; title=&quot;[GH-219] Fix storage of binary data for array and object types&quot;&gt;DBAL-369&lt;/a&gt; for the suggested fix&lt;/p&gt;</comment>
                    <comment id="19374" author="ocramius" created="Wed, 23 Jan 2013 21:52:00 +0000"  >&lt;p&gt;&lt;a href=&quot;http://www.doctrine-project.org/jira/secure/ViewProfile.jspa?name=k-fish&quot; class=&quot;user-hover&quot; rel=&quot;k-fish&quot;&gt;Karsten Dambekalns&lt;/a&gt; &lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-368&quot; title=&quot;array and object types should use BLOB, not CLOB, to store serialized data&quot;&gt;&lt;del&gt;DBAL-368&lt;/del&gt;&lt;/a&gt; is this issue. What&apos;s the one you were referring to?&lt;/p&gt;</comment>
                    <comment id="19375" author="ocramius" created="Wed, 23 Jan 2013 21:54:00 +0000"  >&lt;p&gt;Nvm, it was &lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-369&quot; title=&quot;[GH-219] Fix storage of binary data for array and object types&quot;&gt;DBAL-369&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="19376" author="ocramius" created="Wed, 23 Jan 2013 21:54:22 +0000"  >&lt;p&gt;Moved to &lt;a href=&quot;http://www.doctrine-project.org/jira/browse/DBAL-369&quot; title=&quot;[GH-219] Fix storage of binary data for array and object types&quot;&gt;DBAL-369&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-332] Memory option for Sqlite driver does nothing</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-332</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I&apos;m trying to configure a &quot;memory&quot; sqlite database, as described here: &lt;a href=&quot;http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#pdo-sqlite&quot; class=&quot;external-link&quot;&gt;http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#pdo-sqlite&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So here is my configuration (config_test.yml) :&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;div class=&quot;error&quot;&gt;&lt;span class=&quot;error&quot;&gt;Unable to find source-code formatter for language: yml.&lt;/span&gt; Available languages are: actionscript, html, java, javascript, none, sql, xhtml, xml&lt;/div&gt;&lt;pre&gt; 
doctrine:
    dbal:
        driver:    pdo_sqlite
        memory:    &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
        user:      db_user
        password:  db_pwd
        charset:   UTF8
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt; 

&lt;p&gt;I&apos;m then running &lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;./app/console doctrine:database:create --env=test&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt; and the result is a &lt;b&gt;&quot;myBdName&quot;&lt;/b&gt; db file (the filename contains the quote!!) in my root folder.&lt;/p&gt;

&lt;p&gt;I don&apos;t understand why the file &lt;a href=&quot;http://www.doctrine-project.org/api/dbal/2.3/source-class-Doctrine.DBAL.Schema.SqliteSchemaManager.html#46&quot; class=&quot;external-link&quot;&gt;http://www.doctrine-project.org/api/dbal/2.3/source-class-Doctrine.DBAL.Schema.SqliteSchemaManager.html#46&lt;/a&gt; is creating a &lt;b&gt;path&lt;/b&gt; option with my DB name, if I comment the line 57, everything seems fine (no more file created).&lt;/p&gt;

&lt;p&gt;I have seen some memory related options in the Doctrine test suite so maybe I&apos;m doing it wrong, and in that case that&apos;s a documentation issue I can work on.&lt;/p&gt;

&lt;p&gt;Thx,&lt;br/&gt;
Damien&lt;/p&gt;</description>
                <environment>PHP Version 5.3.10&lt;br/&gt;
SQLite Library 3.7.9&lt;br/&gt;
Doctrine 2.3.x-dev&lt;br/&gt;
Dbal 2.3.x-dev&lt;br/&gt;
Symfony 2.1 RC2</environment>
            <key id="13995">DBAL-332</key>
            <summary>Memory option for Sqlite driver does nothing</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="dalexandre">Damien ALEXANDRE</reporter>
                        <labels>
                    </labels>
                <created>Wed, 29 Aug 2012 15:52:19 +0000</created>
                <updated>Mon, 17 Sep 2012 11:01:35 +0000</updated>
                    <resolved>Mon, 17 Sep 2012 11:01:35 +0000</resolved>
                            <version>2.2.2</version>
                <version>2.3</version>
                                                <component>Drivers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="18604" author="beberlei" created="Wed, 5 Sep 2012 17:20:42 +0000"  >&lt;p&gt;You cannot create an in memory database using Symfonys database:create. The in memory database will be closed when the request ends. So its completly useless this way. You have to recreate it in every request that you want to use it. It is just good for one request.&lt;/p&gt;</comment>
                    <comment id="18614" author="dalexandre" created="Thu, 6 Sep 2012 14:48:34 +0000"  >&lt;p&gt;My example with &quot;app/console&quot; is misleading,&lt;br/&gt;
what I want to do is building a memory SQLite database on the fly and run some code right after it (in a phpunit test).&lt;/p&gt;

&lt;p&gt;The issue here is that there is an option documented (first link) that doesn&apos;t work / is not implemented (second link). And a physic file is generated, it should not.&lt;/p&gt;

&lt;p&gt;As your answer seems to be based on the mistaken impression that I wanted to use volatile database in a persistent way, I&apos;m reopening this issue. &lt;/p&gt;

&lt;p&gt;Thanks for your time.&lt;br/&gt;
Damien.&lt;/p&gt;</comment>
                    <comment id="18615" author="beberlei" created="Fri, 7 Sep 2012 07:34:17 +0000"  >&lt;p&gt;Try removing the user/password keys. memory database connection works for me, this seems to be a configuration issue.&lt;/p&gt;

&lt;p&gt;If you want to create an in memory db for testing then you have to create the schema with SchemaTool inside the phpunit tests.&lt;/p&gt;</comment>
                    <comment id="18661" author="beberlei" created="Mon, 17 Sep 2012 11:01:35 +0000"  >&lt;p&gt;No feedback on potential fix, this issue is either misconfiguration or wrong use of the API. I couldn&apos;t reproduce this and it works for me (TM).&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-328] [GH-189] Changed &apos;implements&apos; by &apos;extends&apos; on SQLAzureFederationsSynchronizer</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-328</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of mdaloia:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/189&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/189&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;This error was introduced with the changes commited on SHA: doctrine/dbal@12f381f1254f756114267e1a1e71d0a783bfaf1c&lt;/p&gt;</description>
                <environment></environment>
            <key id="13986">DBAL-328</key>
            <summary>[GH-189] Changed &apos;implements&apos; by &apos;extends&apos; on SQLAzureFederationsSynchronizer</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Fri, 24 Aug 2012 18:53:45 +0000</created>
                <updated>Mon, 27 Aug 2012 20:27:51 +0000</updated>
                    <resolved>Mon, 27 Aug 2012 20:27:51 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="18543" author="beberlei" created="Sun, 26 Aug 2012 00:16:30 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-189&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/189&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/189&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="18548" author="fabio.bat.silva" created="Mon, 27 Aug 2012 20:27:51 +0000"  >&lt;p&gt;Fixed by : &lt;a href=&quot;https://github.com/doctrine/dbal/commit/bb88ba71c2c1d8f172836cd4e32470e562970317&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/commit/bb88ba71c2c1d8f172836cd4e32470e562970317&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-226] DATETIME2 in MSSQL - declared, but not supported</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-226</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;From Doctrine documentation&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;27. Limitations and Known Issues&lt;br/&gt;
...&lt;br/&gt;
27.2.2. Microsoft SQL Server and Doctrine &quot;datetime&quot;&lt;br/&gt;
Doctrine assumes that you use DateTime2 data-types. If your legacy database contains DateTime datatypes then you have to add your own data-type (see Basic Mapping for an example).&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;In reality, the type is not supported, failing with exception&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Could not convert database value &quot;2012-02-15 01:25:12.0000000&quot; to Doctrine Type datetime. Expected format: Y-m-d H:i:s.u &lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;The reason of such behavior is a bug in DBAL&lt;br/&gt;
MsSQLPlatform::getDateTimeFormatString =&amp;gt; &apos;Y-m-d H:i:s.u&apos;&lt;/p&gt;

&lt;p&gt;u (milliseconds in PHP) occupy 6 digits, while datetime2 type has 7 digits.&lt;br/&gt;
The solution is to truncate last digit before conversion&lt;/p&gt;





</description>
                <environment></environment>
            <key id="13464">DBAL-226</key>
            <summary>DATETIME2 in MSSQL - declared, but not supported</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="rivaros">ross neacoders</reporter>
                        <labels>
                    </labels>
                <created>Mon, 20 Feb 2012 14:32:31 +0000</created>
                <updated>Mon, 5 Mar 2012 09:32:29 +0000</updated>
                    <resolved>Mon, 5 Mar 2012 08:54:31 +0000</resolved>
                            <version>2.1.6</version>
                                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17502" author="beberlei" created="Sat, 3 Mar 2012 20:20:13 +0000"  >&lt;p&gt;cCtually it is supported, when the DATETIME2 are created through Doctrine, because it makes DATETIME2(6) out of them to make DateTime#createFromFormat() support work. I am not sure how to fix this problem with &quot;datetime&quot; type, it will work when you use the VarDateTime types, these are a bit slower, but dont have this problem. Just call this in your bootstrap:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;\Doctrine\DBAL\Types\Type::overrideType(&lt;span class=&quot;code-quote&quot;&gt;&quot;datetime&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;Doctrine\DBAL\Types\Type\VarDateTime&quot;&lt;/span&gt;);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                    <comment id="17513" author="rivaros" created="Mon, 5 Mar 2012 08:45:49 +0000"  >&lt;p&gt;Beberlei,&lt;/p&gt;

&lt;p&gt;This issue is related to datetime2 MSSQL type (NOT datetime MSSQL type).&lt;/p&gt;

&lt;p&gt;Datetime2 is declared, but not supported - read above again.&lt;/p&gt;
</comment>
                    <comment id="17514" author="beberlei" created="Mon, 5 Mar 2012 08:54:31 +0000"  >&lt;p&gt;I read your comment and did speak about DATETIME2. &lt;/p&gt;

&lt;p&gt;DATETIME in MsSQL only has 3 digits after the second. DATETIME2 by default has 7. However PHPs DateTime#createFromFormat() only supports 6 digits. That is why Doctrine creates MsSQL DATETIME2(6) columns, restricting to 6 digits. If your database already has DAteTime2 columns with 7 digits, then you have to register the VarDateTime type as detailed in my comment above.&lt;/p&gt;</comment>
                    <comment id="17515" author="rivaros" created="Mon, 5 Mar 2012 09:32:29 +0000"  >&lt;p&gt;Understand, you mentioned &quot;datetime&quot; in your post, so I thought you misunderstood the issue.&lt;/p&gt;

&lt;p&gt;But, isn&apos;t checking if DATETIME2 is (7) and truncating last digit not a better option, if VarDateTime and date_create have bad speed?&lt;br/&gt;
VarDateTime seems to work, but last 7th digit is not considered anyway.&lt;br/&gt;
Also this will eliminate need to change something in bootstrap.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-308] [GH-174] Used the placeholder in the command help for the name</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-308</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of stof:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/174&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/174&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;This change will allow to keep the original help message in DoctrineBundle even if we rename the command. I will submit the same PR for the ORM.&lt;/p&gt;

&lt;p&gt;@beberlei please include it in the 2.3 branch (and ideally in 2.2 if it is not too much to ask for it). My goal is to stop duplicating the help messages in the bundle as outdated help messages are really a pain for users (see doctrine/DoctrineBundle#89)&lt;/p&gt;</description>
                <environment></environment>
            <key id="13859">DBAL-308</key>
            <summary>[GH-174] Used the placeholder in the command help for the name</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Mon, 16 Jul 2012 22:42:20 +0000</created>
                <updated>Mon, 23 Jul 2012 08:31:12 +0000</updated>
                    <resolved>Mon, 23 Jul 2012 08:31:12 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="18368" author="beberlei" created="Mon, 23 Jul 2012 05:04:37 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-174&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/174&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/174&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-260] [GH-135] Add typehint info to core types for use by entity generator.</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-260</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of benlumley:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/135&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/135&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;So as you probably know, the EntityGenerator doesn&apos;t typehint the setters for the DateTime types (datetime, date, datetimetz, time) - which has just caused me to miss an obvious error, and judging from google, plenty of others before me too.&lt;/p&gt;

&lt;p&gt;So I&apos;ve added it - you&apos;ll have a pull request in a sec on the doctrine2 repo for that, but it needs this change too - which provides the mapping info.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13645">DBAL-260</key>
            <summary>[GH-135] Add typehint info to core types for use by entity generator.</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Wed, 18 Apr 2012 23:01:35 +0000</created>
                <updated>Fri, 4 May 2012 17:55:11 +0000</updated>
                    <resolved>Fri, 4 May 2012 17:55:11 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17889" author="beberlei" created="Thu, 26 Apr 2012 21:50:07 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-135&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/135&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/135&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-258] [GH-133] Removed Paranthesis to allow for more complex Regex</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-258</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of Hounddog:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/133&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/133&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Needed to remove the Paranthesis to allow excluding of Tables with more complex Regular Expressions.&lt;/p&gt;</description>
                <environment></environment>
            <key id="13636">DBAL-258</key>
            <summary>[GH-133] Removed Paranthesis to allow for more complex Regex</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Tue, 17 Apr 2012 10:41:55 +0000</created>
                <updated>Fri, 4 May 2012 17:37:35 +0000</updated>
                    <resolved>Fri, 4 May 2012 17:37:35 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17859" author="beberlei" created="Tue, 17 Apr 2012 10:48:03 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-133&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/133&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/133&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-253] [GH-132] Added Support for excluding Tables</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-253</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of doyousoft:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/132&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/132&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

</description>
                <environment></environment>
            <key id="13623">DBAL-253</key>
            <summary>[GH-132] Added Support for excluding Tables</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Tue, 10 Apr 2012 10:52:23 +0000</created>
                <updated>Fri, 4 May 2012 18:01:06 +0000</updated>
                    <resolved>Fri, 4 May 2012 18:01:06 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17863" author="beberlei" created="Wed, 18 Apr 2012 13:37:12 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-132&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/132&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/132&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-246] [GH-125] PHPDoc blocks improvments + 1 CS Fix</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-246</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of adrienbrault:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/125&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/125&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Hey guys,&lt;/p&gt;

&lt;p&gt;I started to fix a class type inside Connection and then i went ahead to see what i could also improve!&lt;/p&gt;

&lt;p&gt;Adrien&lt;/p&gt;</description>
                <environment></environment>
            <key id="13592">DBAL-246</key>
            <summary>[GH-125] PHPDoc blocks improvments + 1 CS Fix</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="1">Fixed</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Mon, 2 Apr 2012 17:15:30 +0000</created>
                <updated>Fri, 4 May 2012 18:05:02 +0000</updated>
                    <resolved>Fri, 4 May 2012 18:05:02 +0000</resolved>
                                            <fixVersion>2.3</fixVersion>
                                        <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="17728" author="beberlei" created="Mon, 2 Apr 2012 17:39:13 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-125&amp;#93;&lt;/span&gt; was synchronize&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/125&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/125&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="17738" author="beberlei" created="Tue, 3 Apr 2012 13:13:05 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-125&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/125&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/125&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-426] [GH-256] Create queryBuilder from parts.</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-426</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of NoUseFreak:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/256&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/256&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Add a feature that can create a queryBuilder from queryBuilder parts.&lt;/p&gt;

&lt;p&gt;This can be used when a query is build and needs to be stored somehow and restore it later.&lt;/p&gt;
</description>
                <environment></environment>
            <key id="14416">DBAL-426</key>
            <summary>[GH-256] Create queryBuilder from parts.</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Fri, 25 Jan 2013 23:01:53 +0000</created>
                <updated>Sat, 26 Jan 2013 16:24:46 +0000</updated>
                    <resolved>Sat, 26 Jan 2013 16:24:46 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19414" author="beberlei" created="Fri, 25 Jan 2013 23:33:32 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-256&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/256&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/256&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-414] zaza</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-414</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;yu&lt;/p&gt;</description>
                <environment>aaan</environment>
            <key id="14367">DBAL-414</key>
            <summary>zaza</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="bilgee">batbileg</reporter>
                        <labels>
                    </labels>
                <created>Wed, 9 Jan 2013 18:28:51 +0000</created>
                <updated>Wed, 9 Jan 2013 18:30:19 +0000</updated>
                    <resolved>Wed, 9 Jan 2013 18:30:19 +0000</resolved>
                            <version>2.2.1</version>
                                                <component>Drivers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19267" author="bilgee" created="Wed, 9 Jan 2013 18:30:03 +0000"  >&lt;p&gt;yu wm&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-391] [GH-233] convertToPHPValue should match convertToDatabaseValue</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-391</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of zyjohn:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/233&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/233&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;convertToPHPValue return resource which is not match default convertToDatabaseValue that not make and change. Change to return content of the resource.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14265">DBAL-391</key>
            <summary>[GH-233] convertToPHPValue should match convertToDatabaseValue</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Fri, 23 Nov 2012 15:46:34 +0000</created>
                <updated>Mon, 26 Nov 2012 16:40:50 +0000</updated>
                    <resolved>Fri, 23 Nov 2012 15:55:57 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>2</watches>
                        <comments>
                    <comment id="19039" author="ocramius" created="Fri, 23 Nov 2012 15:55:57 +0000"  >&lt;p&gt;Blob field types should be converted to resources:&lt;br/&gt;
&lt;a href=&quot;https://travis-ci.org/doctrine/dbal/jobs/3329007/#L77&quot; class=&quot;external-link&quot;&gt;https://travis-ci.org/doctrine/dbal/jobs/3329007/#L77&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="19065" author="beberlei" created="Mon, 26 Nov 2012 16:40:50 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-233&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/233&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/233&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-454] [GH-277] Remove duplicate SQL parts in query generation</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-454</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of gigablah:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/277&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/277&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;Presently, it&apos;s possible to do this using QueryBuilder:&lt;/p&gt;

&lt;p&gt;```php&lt;br/&gt;
$qb-&amp;gt;select(&apos;u.*&apos;)&lt;br/&gt;
   -&amp;gt;from(&apos;users&apos;, &apos;u&apos;)&lt;br/&gt;
   -&amp;gt;addOrderBy(&apos;u.name&apos;, &apos;ASC&apos;)&lt;br/&gt;
   -&amp;gt;addOrderBy(&apos;u.name&apos;, &apos;ASC&apos;); // duplicate&lt;br/&gt;
```&lt;br/&gt;
Which produces:&lt;br/&gt;
```sql&lt;br/&gt;
SELECT u.* FROM users u ORDER BY u.name ASC, u.name ASC&lt;br/&gt;
```&lt;/p&gt;

&lt;p&gt;This patch removes duplicates from the `SELECT`, `SET`, `ORDER BY` and `GROUP BY` parts during SQL generation (there&apos;s already logic that removes duplicate `FROM` parts).&lt;/p&gt;

&lt;p&gt;I&apos;ve added test cases for each affected keyword as well.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14652">DBAL-454</key>
            <summary>[GH-277] Remove duplicate SQL parts in query generation</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Sat, 2 Mar 2013 04:04:20 +0000</created>
                <updated>Sun, 3 Mar 2013 01:53:39 +0000</updated>
                    <resolved>Sun, 3 Mar 2013 01:53:39 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19795" author="beberlei" created="Sun, 3 Mar 2013 01:23:22 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-277&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/277&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/277&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-456] [GH-279] adds new output format</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-456</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of schmittjoh:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/279&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/279&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;The output of the ::dump command is very unstable (depends on platform/PHP version/installed extensions).&lt;/p&gt;

&lt;p&gt;This pull request adds a new format which is more suitable for machine consumption.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14656">DBAL-456</key>
            <summary>[GH-279] adds new output format</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Sun, 3 Mar 2013 09:59:03 +0000</created>
                <updated>Tue, 5 Mar 2013 00:47:09 +0000</updated>
                    <resolved>Tue, 5 Mar 2013 00:47:09 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19806" author="beberlei" created="Mon, 4 Mar 2013 23:12:31 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-279&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/279&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/279&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-465] [GH-286] Fix data not being cached in ResultCache</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-465</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of Alan01252:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/286&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/286&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

&lt;p&gt;The ResultCacheStatement has a small logic error, it tested for emptied&lt;br/&gt;
being true when it should have tested for emptied being false. The&lt;br/&gt;
comments also statement that the function returns a boolean, however the&lt;br/&gt;
function didn&apos;t return a boolean.&lt;/p&gt;

&lt;p&gt;This is my first time committing to a larger open source project like dbal. Very worried I&apos;ll of done something wrong, please go easy / teach me.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14703">DBAL-465</key>
            <summary>[GH-286] Fix data not being cached in ResultCache</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Tue, 19 Mar 2013 13:25:22 +0000</created>
                <updated>Wed, 20 Mar 2013 22:27:56 +0000</updated>
                    <resolved>Wed, 20 Mar 2013 22:27:56 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19876" author="beberlei" created="Wed, 20 Mar 2013 07:10:16 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-286&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/286&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/286&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="19877" author="beberlei" created="Wed, 20 Mar 2013 07:10:25 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-286&amp;#93;&lt;/span&gt; was reopened&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/286&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/286&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="19878" author="beberlei" created="Wed, 20 Mar 2013 19:46:06 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-286&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/286&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/286&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-481] [GH-297] check for proper type when formatting dates</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-481</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue is created automatically through a Github pull request on behalf of mprzytulski:&lt;/p&gt;

&lt;p&gt;  Url: &lt;a href=&quot;https://github.com/doctrine/dbal/pull/297&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/297&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Message:&lt;/p&gt;

</description>
                <environment></environment>
            <key id="14752">DBAL-481</key>
            <summary>[GH-297] check for proper type when formatting dates</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="3" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/major.png">Major</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="beberlei">Benjamin Eberlei</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Tue, 2 Apr 2013 13:32:54 +0000</created>
                <updated>Tue, 2 Apr 2013 14:07:54 +0000</updated>
                    <resolved>Tue, 2 Apr 2013 14:07:54 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19932" author="beberlei" created="Tue, 2 Apr 2013 14:05:14 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-297&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/297&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/297&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-353] doctrine:schema:update doesn&apos;t understand it doesn&apos;t need to run again</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-353</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;doctrine:schema:update keeps thinking there is more to do:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
$ php app/console doctrine:schema:update --dump-sql
ALTER TABLE Account CHANGE guid guid VARCHAR(255) NOT NULL;
ALTER TABLE Customer CHANGE guid guid VARCHAR(255) NOT NULL, CHANGE authGuid authGuid VARCHAR(255) NOT NULL
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
$ php app/console doctrine:schema:update --force   
Updating database schema...
Database schema updated successfully! &lt;span class=&quot;code-quote&quot;&gt;&quot;2&quot;&lt;/span&gt; queries were executed
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
$ php app/console doctrine:schema:update --dump-sql
ALTER TABLE Account CHANGE guid guid VARCHAR(255) NOT NULL;
ALTER TABLE Customer CHANGE guid guid VARCHAR(255) NOT NULL, CHANGE authGuid authGuid VARCHAR(255) NOT NULL
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
            <key id="14066">DBAL-353</key>
            <summary>doctrine:schema:update doesn&apos;t understand it doesn&apos;t need to run again</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="4">Incomplete</resolution>
                    <security id="10000">All</security>
                        <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="hexmode">Mark A. Hershberger</reporter>
                        <labels>
                    </labels>
                <created>Tue, 25 Sep 2012 15:45:56 +0000</created>
                <updated>Wed, 23 Jan 2013 22:48:55 +0000</updated>
                    <resolved>Wed, 23 Jan 2013 22:48:55 +0000</resolved>
                                                            <component>Schema Managers</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>3</watches>
                        <comments>
                    <comment id="18729" author="stof" created="Tue, 25 Sep 2012 15:56:32 +0000"  >&lt;p&gt;Can you paste your ORM mapping for these fields ?&lt;/p&gt;</comment>
                    <comment id="18900" author="jrobeson" created="Thu, 1 Nov 2012 10:17:21 +0000"  >&lt;p&gt;I had the same problem. I used doctrine:mapping:import&lt;br/&gt;
to bootstrap some entities. It generated my &lt;br/&gt;
session entity primary key with a GeneratedValue strategy of &lt;br/&gt;
IDENTITY when it should have been NONE.&lt;/p&gt;

&lt;p&gt;This sounds like the same problem with the string key&lt;br/&gt;
and incorrect GeneratedValue strategy.&lt;/p&gt;

&lt;p&gt;PS: I ran into that doctrine:mapping:import issue&lt;br/&gt;
 perhaps a year ago, when i  first started playing with doctrine.&lt;br/&gt;
I do not know if it still persists.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-471] when persisting objects to Doctrine2 and one of the tables are named the same as a MySQL reserved word</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-471</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;I am not sure this is a correct posting to your issue tracker, as I am a beginner at development, at least in the sense of doctrine.&lt;/p&gt;

&lt;p&gt;I have an entity named Trigger in my Symfony2 project. I had set the table name to be &quot;trigger&quot;, and this did not work. However, the entities were created without any problems, I first discovered the problem when attempting to persist a Trigger entity. The solution was to rename the table to &quot;mtrigger&quot; or something else, but I think the error message could be better somehow. Now it throws an exception with the MySQL error, which only says there&apos;s an error in the syntax, and to check the manual. The manual is quite huge and it was a horror for me before I started thinking in the field of reserved words.&lt;/p&gt;

&lt;p&gt;Note that this is just a proposal to an improvement. It might be that it is hard to implement it for you. In that case, please just close the issue.&lt;/p&gt;</description>
                <environment>MySQL on Ubuntu</environment>
            <key id="14722">DBAL-471</key>
            <summary>when persisting objects to Doctrine2 and one of the tables are named the same as a MySQL reserved word</summary>
                <type id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/improvement.png">Improvement</type>
                                <priority id="4" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/minor.png">Minor</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                                <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="pan100">Per-&#216;ivin Berg Andersen</reporter>
                        <labels>
                    </labels>
                <created>Sun, 24 Mar 2013 15:53:29 +0000</created>
                <updated>Sun, 24 Mar 2013 16:05:48 +0000</updated>
                    <resolved>Sun, 24 Mar 2013 16:05:44 +0000</resolved>
                            <version>2.3.2</version>
                                                <component>Platforms</component>
                        <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="19887" author="ocramius" created="Sun, 24 Mar 2013 16:05:48 +0000"  >&lt;p&gt;Doctrine 2 ORM allows you to define &quot;naming strategies&quot; and/or to quote the table names with mysql-style ticks that get automatically quoted, like:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
/** @ORM\Table(name=&lt;span class=&quot;code-quote&quot;&gt;&quot;`foo`&quot;&lt;/span&gt;) */
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>

<item>
            <title>[DBAL-358] This issue should be removed. Wrong merge on github.</title>
                <link>http://www.doctrine-project.org/jira/browse/DBAL-358</link>
                <project id="10040" key="DBAL">Doctrine DBAL</project>
                        <description>&lt;p&gt;This issue should be removed. Wrong merge on github.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14097">DBAL-358</key>
            <summary>This issue should be removed. Wrong merge on github.</summary>
                <type id="1" iconUrl="http://www.doctrine-project.org/jira/images/icons/issuetypes/bug.png">Bug</type>
                                <priority id="5" iconUrl="http://www.doctrine-project.org/jira/images/icons/priorities/trivial.png">Trivial</priority>
                    <status id="6" iconUrl="http://www.doctrine-project.org/jira/images/icons/statuses/closed.png">Closed</status>
                    <resolution id="6">Invalid</resolution>
                    <security id="10000">All</security>
                        <assignee username="ocramius">Marco Pivetta</assignee>
                                <reporter username="beberlei">Benjamin Eberlei</reporter>
                        <labels>
                    </labels>
                <created>Thu, 4 Oct 2012 14:58:09 +0000</created>
                <updated>Wed, 23 Jan 2013 23:01:19 +0000</updated>
                    <resolved>Wed, 23 Jan 2013 23:01:19 +0000</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>1</watches>
                        <comments>
                    <comment id="18769" author="beberlei" created="Thu, 4 Oct 2012 14:59:34 +0000"  >&lt;p&gt;A related Github Pull-Request &lt;span class=&quot;error&quot;&gt;&amp;#91;GH-210&amp;#93;&lt;/span&gt; was closed&lt;br/&gt;
&lt;a href=&quot;https://github.com/doctrine/dbal/pull/210&quot; class=&quot;external-link&quot;&gt;https://github.com/doctrine/dbal/pull/210&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
        </item>
</channel>
</rss>