AnsiQuoteStrategy.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\ORM\Mapping;
  20. use Doctrine\DBAL\Platforms\AbstractPlatform;
  21. /**
  22. * ANSI compliant quote strategy, this strategy does not apply any quote.
  23. * To use this strategy all mapped tables and columns should be ANSI compliant.
  24. */
  25. class AnsiQuoteStrategy implements QuoteStrategy
  26. {
  27. /**
  28. * {@inheritdoc}
  29. */
  30. public function getColumnName($fieldName, ClassMetadata $class, AbstractPlatform $platform)
  31. {
  32. return $class->fieldMappings[$fieldName]['columnName'];
  33. }
  34. /**
  35. * {@inheritdoc}
  36. */
  37. public function getTableName(ClassMetadata $class, AbstractPlatform $platform)
  38. {
  39. return $class->table['name'];
  40. }
  41. /**
  42. * {@inheritdoc}
  43. */
  44. public function getSequenceName(array $definition, ClassMetadata $class, AbstractPlatform $platform)
  45. {
  46. return $definition['sequenceName'];
  47. }
  48. /**
  49. * {@inheritdoc}
  50. */
  51. public function getJoinColumnName(array $joinColumn, ClassMetadata $class, AbstractPlatform $platform)
  52. {
  53. return $joinColumn['name'];
  54. }
  55. /**
  56. * {@inheritdoc}
  57. */
  58. public function getReferencedJoinColumnName(array $joinColumn, ClassMetadata $class, AbstractPlatform $platform)
  59. {
  60. return $joinColumn['referencedColumnName'];
  61. }
  62. /**
  63. * {@inheritdoc}
  64. */
  65. public function getJoinTableName(array $association, ClassMetadata $class, AbstractPlatform $platform)
  66. {
  67. return $association['joinTable']['name'];
  68. }
  69. /**
  70. * {@inheritdoc}
  71. */
  72. public function getIdentifierColumnNames(ClassMetadata $class, AbstractPlatform $platform)
  73. {
  74. return $class->identifier;
  75. }
  76. /**
  77. * {@inheritdoc}
  78. */
  79. public function getColumnAlias($columnName, $counter, AbstractPlatform $platform, ?ClassMetadata $class = null)
  80. {
  81. return $platform->getSQLResultCasing($columnName . '_' . $counter);
  82. }
  83. }