1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Advanced components - View - Managing views.php

16 lines
357 B
PHP

<?php
$conn = Doctrine_Manager::getInstance()
->openConnection(new PDO("dsn","username","password");
$query = new Doctrine_Query($conn);
$query->from('User.Phonenumber')->limit(20);
$view = new Doctrine_View($query, 'MyView');
// creating a database view
$view->create();
// dropping the view from the database
$view->drop();
?>