mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-3211: Annotation @ORM\Table(name="schema.table") don't generate sql using OCI8 #3974
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Jul 9, 2014).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user awesker20:
Using Symfony and "doctrine/orm": "2.4.@dev", "doctrine/doctrine-bundle": "1.3.@dev", with OCI8(Oracle Call Interface)
I have an entity
/****
*/
class Usuario implements UserInterface
{ ... }
When i use de CLI (php app/console doctrine:schema:create --dump-sql) this don't show nothing, the output is empty.
If i change (name="rrhh.usuario") to (name="usuario", schema="rrhh") the CLI show the sql query but without the schema.
@doctrinebot commented on GitHub (Jul 9, 2014):
Comment created by @ocramius:
Duplicates this issue
@mivdev commented on GitHub (Mar 17, 2021):
is it possible that this bug is still open?