The Doctrine Project is a collection of open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP.

learn more… | top users | synonyms (1)

0
votes
1answer
24 views

How to catch fetchAll(PDO::FETCH_OBJ)

In my Symfony 1.4 project in one of my class.php file I used the following codes to execute query and fetch object. $statement = Doctrine_Manager::connection()->execute($query); $resultset = ...
0
votes
0answers
23 views

is doctrine 2 comptatible with Zendframework 1.12

i want to install doctrine 2 on a zendframework 1.12. i read somewhere that doctrine 2 easy to configure Docrine 2 to Zendframe 2. however, i am not clear whether Zenframework 1.12 uses he same ...
0
votes
0answers
25 views

How to autoload non namespaced code in Zend?

I am trying to understand the concepts of Namespaces and Auto loading in PHP. I am working on an application built using the Zend Framework. Currently I am in the process of upgrading the Doctrine ...
0
votes
0answers
35 views

symfony2 / doctrine, use custom values for entity form type

i have the following problem with symfony forms. i have two entitites with one to many relations. Advert and ReleaseDates. The second one has only two fields, foreign key advert_id and release_date ...
0
votes
0answers
19 views

Limit sql result on dbal

Im using dbal on Symfony2 to retrieve some info from my table: $social = $conn->fetchAll('SELECT * FROM page WHERE brand_id = :brand LIMIT :start,:limit', array('brand'=>$brand, ...
0
votes
0answers
27 views

Doctrine2 with oracle, sequence generator for the associated table doesn't called

this problem has made me crazy....!! i have an Oracle database, there is a many to many relation between Stores (table name: SELF_STORES) and rental periods (table name: SELF_RENTAL_PERIODS). i've ...
1
vote
1answer
18 views

Doctrine Many to Many Insert

i have some promblem. i was research and try all suggest but no one work. and i end up with : Argument 1 passed to Entity\User::addCategories() must be an instance of Entity\Category, string ...
0
votes
1answer
16 views

Symfony/Doctrine: DateTime as primary key

I am trying to make an Entity using a date as a primary key. The problem is that Symfony can't convert the DateTime I'm using into a string to introduce it in the IdentityMap. I get the following ...
1
vote
1answer
30 views

Doctrine INNER/LEFT JOIN two tables

I am learning from this Question but facing issues with many operations in between: doctrine 2 query builder and join tables Below is my Questions. I am looking for help in my previous question ...
0
votes
0answers
15 views

doctrine:generate-migrations-diff does not generate any new migration

After some changes I've made today in my schema.yml, each of one followed by the diff, migrate, build commands, the diff operation stopped working. The last successful migration was the 243rd. Now, ...
0
votes
0answers
34 views

Twig doesn't show data in object

I'm trying to use Twig to display a simple list of Doctrine 2 entity objects. The objects are fetched with the untouched results from a DQL query. The PHP code is like this: /* * I know the query ...
0
votes
0answers
14 views

Doctrine Class Table Inheritance - Multiple Types

I'm trying to make a Listing system for a classifieds-like site in Symfony. I want to have multiple Listing types with different fields (and some common fields). I was going to make a main Listing ...
2
votes
1answer
30 views

How can I load fixtures from functional test in Symfony 2

My DoctrineFixturesBundle is installed and I can load fixture trough the command-line but , how can I load fixtures from my functional test ?
1
vote
0answers
35 views

Doctrine Query to find total number of Result in MySQL with LIMIT

I am trying to fetch the total number of rows found for specific query when LIMIT is applied. I successfully found the answer in PHP/MySQL, But I am not able to conver the logic in Zend/Doctrine. I am ...
0
votes
0answers
13 views

Raw SQL query or Doctrine_Query? What is the best in performance?

I made this query in raw SQL and need some help moving to Doctrine: SELECT re . *, t.tipo, m.patente, o.nombre, de.revisado FROM sdriving_registros_emisores re LEFT JOIN ...
0
votes
0answers
51 views

Symfony2: stored procedure and Admingenerator

In my symfony project I use admingenerator and I have to select my records by a stored procedure. But my result is nativeQuery type while I want a doctrine / orm /query type for listing result in ...
0
votes
1answer
22 views

Method getPhpcrSession class ObjectManager

So I don't have getPhpcrSession method in ObjectManager from where I am trying to get this method. I have found it in here And I need it so that I could implement Block and Content Bundles. I have ...
0
votes
1answer
21 views

Symfony2 - Change Migration Directory

How can I change the default migration dirctory in the config.yml? Right now I am using 2 bundles with different db-connections and I would like to create migrations files and store them in different ...
0
votes
1answer
19 views

Mongodb doctrine “zero-length keys are not allowed, did you use $ with double quotes”

programmers, i'm using symfony doctrine and mongodb. Today i try to create following query: $q = $this->createQueryBuilder("user"); $keywords = explode("_", $keyword); foreach ($keywords as ...
0
votes
2answers
59 views

How to Order Entities (ManyToOne association) when using DoctrineORMModule\Form\Element\EntitySelect annotation

Using zf2 and Doctrine, I am generating a form for my Salesman class. Salesman has a ManyToOne reference to Store (i.e., a store can have 1 or more salesmen) Since I use ...
0
votes
2answers
33 views

Symfony2 - Doctrine ArrayCollection methods coming back as undefined

This is odd. I have an entity that can contain an ArrayCollection of other, related entities. When I make a couple of helper methods to allow me to add/retrieve the value of a singular entity, I get ...
1
vote
1answer
30 views

Multiple Query in Doctrine with NAND,NOR,NOT,AND Operators

I am trying to design a doctrine query and I am new to doctrine but with the help of my other post I come up with a query which works when I run in my Mysql. But I want it to convert the query in ...
0
votes
0answers
48 views

Symfony2 Doctrine ORM Composite Primary Keys

I am developing an application in Symfony 2.3 with Doctrine 2.4 as ORM. The database engine I use is PostgreSQL. I'm having problems when mapping entities with composite primary keys in other tables. ...
1
vote
1answer
31 views

Count joined rows with createQueryBuilder

I have a query that joins several tables, $qb = $dbm->createQueryBuilder(); $qb->select('job', 'tasks') ->from('MyJobBundle:Job', 'job') ->innerJoin('job.tasks', 'job_tasks'); ...
0
votes
1answer
33 views

Zend + Doctrine: Slow PDO connection

I'm getting really slow responses from a Zend website, and xdebug shows me a 20.000ms (20 seconds) delay on the class Doctrine\DBAL\Driver\PDOConnection. The source code of that class is the ...
0
votes
1answer
25 views

Doctrine2 generate:entities on subclass replicates parent class methods and properties

I started using symfony2 and doctrine not long ago. I have two classes (subclass and parent class) with a JOINED inheritance type. The connection seems to work fine but if I run ...
0
votes
1answer
26 views

Check if Doctrine results is NULL or empty or hasn't any records

Which is the right way to check if Doctrine query result is empty or hasn't values in order to show a message to users? I've this code: public function executeIndex(sfWebRequest $request) { ...
0
votes
1answer
30 views

Unknown method SfGuardUserTable::retrieveByUsername Symfony1.4

I'm wondering why I got this error when installing sfDoctrineGuard plugin in symfony 1.4 project stack trace: ...
0
votes
2answers
34 views

JMSSerializationBundle can't serialize on attributes based on groups

I am trying to serialize based on the groups that I have specified on my Product class. The full product class can be seen here. Here's the code that I am using following the example on the ...
0
votes
2answers
29 views

Query only works if I run a query before it

I want to get the schools the user is in, but for some reason I can only access it by running a query to the school table that is otherwise unrelated. Here is my code: This doesn't work (within the ...
1
vote
1answer
43 views

ZF2 getting doctrine service inside bootstrap zfcUser extendet event

I have been extending the ZfcUser I got the new fields working, and they are getting added to the db via doctrine2 no problem there. But now i need to add a links between the user and a payment table ...
-2
votes
0answers
28 views
0
votes
1answer
28 views

Overriding Doctrine Entities

I'm trying to create an application on Symfony2 with Doctrine 2 entities. My problem is that I should have a main application which contains the mainly used functions and other applications which are ...
1
vote
0answers
30 views

Doctrine Migrations: There are no commands defined in the “” namespace

I'm trying to setup Doctrine Migrations as a standalone program and am having a little bit of trouble. I have doctrine-migrations.phar and migrations.yml in the same folder. migrations.yml contains ...
0
votes
1answer
30 views

Doctrine error “Invalid parameter number: number of bound variables does not match number of tokens”

I'm building a Symfony 1.4.20 application and I wrote this code: public function getListForAdmin() { $user = sfContext::getInstance()->getUser(); $q = $this->createQuery('g'); if ...
2
votes
2answers
66 views

how to get partal result from doctrine query builder

I have a product entity in which it has an array as attributes: /** * @ORM\OneToMany(targetEntity="Shopious\MainBundle\Entity\ProductPicture", mappedBy="product", ...
0
votes
2answers
21 views

Symfony2 PDOSessionHandler Allows me to view one page, then kicks me out

I'm trying to implement PDOSessionHandler for my Symfony2 setup. It allows me to log in and takes me to the first page. But then when I try to navigate anywhere else, it takes me back to the log in ...
-1
votes
0answers
14 views

How to install Doctrine 2 ORM from github? [closed]

I viewed https://github.com/doctrine/doctrine2 to install doctrine 2 orm ,but I cant install doctrine 2 in xampp with out any pear or composer . can anyone please show steps how i could install it ...
0
votes
0answers
26 views

Gedmo\Tree how to sort roots?

I want to use Gedmo\Tree in Doctrine. I want to show all Trees, is it possible to sort root nodes? For example: I have some categories. There are some main categories (root node) and subcategories ...
0
votes
0answers
38 views

Doctrine/Symfony - Mapping one entity to many tables [closed]

I'm building a custom OAuth API, where each client will be able to have a separate value store: POST http://api.com/value/someValueName?value=someData&access_token=... will set "someValueName" to ...
0
votes
1answer
17 views

build schema for specific tables in database using doctrine?

In my symfony project i need to generate schema from specific tables not all database tables ,so please tell the way to do if it is possible?
0
votes
2answers
23 views

symfony 2.0 doctrine restric remove entity annotation

I have some bit of troubles with delete constraint in an entity. I have an entity merchandise and an entity vehicle with a relation many to one in merchandise, so a merchandise only could be in one ...
4
votes
1answer
86 views

Doctrine Query from Mysql

I want to create a Doctrine Query: (Doctrine 2.3) SELECT * FROM `car` WHERE `plate` like '%' AND (`datetime` BETWEEN '2013-03-13 22:20:18' AND '2013-03-13 22:20:20') OR (`datetime` BETWEEN ...
1
vote
0answers
19 views

Doctrine Datetime and where condition

I am writing a Doctrine 2.3 Query and I am facing some issues: The SQL Query which I am reflecting was: SELECT * FROM `entry` WHERE `plate` LIKE '%' AND `recognition_datetime` BETWEEN ...
0
votes
0answers
29 views

exception 'Doctrine\ORM\Mapping\MappingException' with message 'The target-entity X cannot be found in Y

I've been getting the above error whenever I try to use EntityManager to find or query for an object with an association. I absolutely cannot find any rhyme or reason for why a target entity cannot ...
0
votes
0answers
11 views

Doctrine OneToMany Relation

I created 2 entities: Users and Product. The relation between them is Bidirectional OneToMany. -If use $entityManager->find("Users",1), it returns user with all his products, which is correct. -But ...
0
votes
0answers
19 views

Doctrine COUNT DISTINCT

All I want to do is this : mysql> select count(lead_record_id) - count(distinct(concat(forename,surname,landline))) As Duplicates from lead_record; +------------+ | Duplicates | +------------+ | ...
0
votes
0answers
20 views

Symfony2 REST find by complex association

I have four linked entities in Symfony2 using doctrine. user<-->>role<<-->roletype<<-->site What is the best RESTful way to find all users belonging to a particular site (Im using the ...
0
votes
1answer
35 views

How to get an associative array from a ResultSetMapping?

I'm working on a Symfony2 project (Doctrine) and I would like to get a simple associative array from a ResultSetMapping object. This is my request : $rsm = new ResultSetMapping; ...
0
votes
1answer
55 views

CodeIgniter ORM on existing application

I have an existing application built on CodeIgniter which leverages the default CI ActiveRecord approach for handling database records from the models. I'd like to make this more object driven by ...

1 2 3 4 5 77