0
votes
1answer
24 views
Why can’t I create a Doctrine model named ‘Album’
I'm using Doctrine as ORM in my project but ran against a strange error:
Using following YAML:
Album:
tableName: dpp_album
actAs: [Timestampable]
columns:
name: string(255)
…
0
votes
0answers
4 views
Extra changeColumns in Doctrine generate-migrations-diff
I'm generating migrations between different yaml schema files: i.e. running:
symfony doctrine:generate-migrations-diff
And the resulting migration file has a whole slew of changeColumn calls that …
0
votes
1answer
22 views
Getting Doctrine to use MySQL “FORCE INDEX”
I have a query in Doctrine's DQL that needs to be able to use MySQL's "FORCE INDEX" functionality in order to massively reduce the query time. Below is what the query basically looks like in plain …
0
votes
3answers
81 views
Doctrine schema.yml generator
Hi,
I am pretty new to doctrine. I made two small projects with doctrine for my own but now I am about to create big project for my client. The project will have more than 50 tables. Is there any way …
0
votes
1answer
34 views
Switch symfony 1.4 from doctrene to propel
How can I properly switch the newly installed Symfony 1.4 framework from Doctrine (that it is configured for by default) to Propel?
0
votes
2answers
32 views
Doctrine ORM - Implement self-relations
Hi everyone!
Can anyone give me an example of how to implement a class self-relation?
Thanks in advance,
Best regards!
1
vote
1answer
30 views
Symfony : How to use widgets with i18n forms in backend (doctrine)
Hi everybody.
I can not manage to have both i18n and tinyMCE widgets on internationalised fields.
If i put both, i will have internationalised fields for all my objects' fields, but no tinyMCE for …
1
vote
1answer
84 views
Cumulative DQL with Doctrine
Hello
Im having a hard time working out a proper DQL to generate cumulative sum. I can do it in plain SQL but when it comes to DQL i cant get hold of it.
Here is how it looks in SQL:
SELECT …
1
vote
2answers
56 views
How to keep two development databases in sync with Doctrine?
(Make this CW if needed)
We are two developers working on a web application based (PHP5, ZF, Doctrine, MySQL5). We are working each with a local webserver and a local database. The database schema is …
0
votes
2answers
46 views
Doctrine ORM JOINS
I have a few simple classes, all extending Doctrine_Record.
Now I want to make a slightly more complex query with Inner Join, not just table data extracting.
I am doing to use DQL, does this oblige …
0
votes
1answer
16 views
Doctrine - schema.yml error
Hi there!
I have the following schema.yml file:
Page:
actAs:
I18n:
fields: [name,html,urlShortDesc]
columns:
name: string
gender:
type: enum
values: [html, …
0
votes
1answer
17 views
Doctrine Load Module Exception
Hello all,
I'm new to doctrine. I created an bootstrap file like the following one:
require_once(dirname(__FILE__)."/../conf/general.php");
…
0
votes
2answers
29 views
Doctrine quoting apostrophes
I am using Doctrine ORM for php and Zend MVC. I have a mysql database. When I insert into the database it is escaping quotes. In other-words when I enter
<input name="customer_name" …
0
votes
1answer
36 views
PHP Doctrine Validation
Hi,
I'm using doctrine and trying to validate some models.
I have the following in my YAML schema:
User:
package: User
columns:
username:
type: string
notnull: true
…
0
votes
0answers
45 views
How to make Doctrine delete table prefixes from class names?
Hello, I'm using Doctrine 1.1.5 and I'd like to know if there is some option for remove table prefix from files and class names when calling Doctrine::generateModelsFromDb or …
