Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.0-BETA4
-
Fix Version/s: 2.0.0-RC1-RC3
-
Component/s: Schema Managers
-
Labels:None
-
Environment:windows xp, sql server 2008, php 5.3
Description
when execute
php doctrine.php orm:convert-mapping --from-database annotation "Entities"
get error message
No identifier/primary key specified for Entity 'Classname(Tablename)'. Every Entity must have an identifier/primary key.
For resolving this problem
I've replaced the line
public function loadMetadataForClass($className, ClassMetadataInfo $metadata)
{
...
$indexes = $this->tables[$tableName]->getIndexes();
...
}
in function "loadMetadataForClass" in \\Doctrine\ORM\Mapping\Driver\DatabaseDriver.php by
public function loadMetadataForClass($className, ClassMetadataInfo $metadata)
{
...
$indexes = $this->_sm->listTableIndexes($tableName);
...
}
then the beta 3 works for my date base
It is because doctrine look for $indexes['prime'] to construit the primary key in entities. when we use "$this->tables[$tableName]>getIndexes()", the keys in $indexes are the real name of indexes of the data base, and in my database, the primary key indexes are named PK_TABLENAME. So I have to use $this>_sm->listTableIndexes($tableName) to pre-edit the indexes before get the list
Activity
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Roman S. Borschel [ romanb ] | Benjamin Eberlei [ beberlei ] |
| Fix Version/s | 2.0-RC1 [ 10091 ] |
| Project | Doctrine 2 - ORM [ 10032 ] | Doctrine DBAL [ 10040 ] |
| Key | DDC-780 |
|
| Affects Version/s | 2.0.0-BETA4 [ 10071 ] | |
| Affects Version/s | 2.0-BETA3 [ 10060 ] | |
| Component/s | Schema Managers [ 10057 ] | |
| Component/s | ORM [ 10012 ] | |
| Fix Version/s | 2.0.0-RC1 [ 10094 ] | |
| Fix Version/s | 2.0.0 [ 10067 ] | |
| Fix Version/s | 2.0-RC1 [ 10091 ] |
| Assignee | Benjamin Eberlei [ beberlei ] | Juozas Kaziukenas [ juokaz ] |
| Fix Version/s | 2.0.0 [ 10067 ] | |
| Fix Version/s | 2.0.0-RC1 [ 10094 ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Fix Version/s | 2.0.0-RC1 [ 10094 ] | |
| Resolution | Fixed [ 1 ] |
| Workflow | jira [ 11854 ] | jira-feedback2 [ 17660 ] |
| Workflow | jira-feedback2 [ 17660 ] | jira-feedback3 [ 20015 ] |