Commit 1fef41e2 authored by jackbravo's avatar jackbravo

ATTR_VLD is deprecated

parent 7e18a0a8
...@@ -9,7 +9,7 @@ In the following example we set an attribute at the global level: ...@@ -9,7 +9,7 @@ In the following example we set an attribute at the global level:
// setting a global level attribute // setting a global level attribute
$manager = Doctrine_Manager::getInstance(); $manager = Doctrine_Manager::getInstance();
$manager->setAttribute(Doctrine::ATTR_VLD, false); $manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL);
</code> </code>
In the next example above we override the global attribute on given connection. In the next example above we override the global attribute on given connection.
...@@ -19,7 +19,7 @@ In the next example above we override the global attribute on given connection. ...@@ -19,7 +19,7 @@ In the next example above we override the global attribute on given connection.
$conn = $manager->openConnection(new PDO('dsn', 'username', 'pw')); $conn = $manager->openConnection(new PDO('dsn', 'username', 'pw'));
$conn->setAttribute(Doctrine::ATTR_VLD, true); $conn->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_NONE);
</code> </code>
In the last example we override once again the connection level attribute in the table level. In the last example we override once again the connection level attribute in the table level.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment