Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45118a2

Browse files
committed
mention SQL Anywhere in basic mapping docs
1 parent c460344 commit 45118a2

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

docs/en/reference/basic-mapping.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -340,15 +340,16 @@ Here is the list of possible generation strategies:
340340

341341
- ``AUTO`` (default): Tells Doctrine to pick the strategy that is
342342
preferred by the used database platform. The preferred strategies
343-
are IDENTITY for MySQL, SQLite and MsSQL and SEQUENCE for Oracle
344-
and PostgreSQL. This strategy provides full portability.
343+
are IDENTITY for MySQL, SQLite, MsSQL and SQL Anywhere and SEQUENCE
344+
for Oracle and PostgreSQL. This strategy provides full portability.
345345
- ``SEQUENCE``: Tells Doctrine to use a database sequence for ID
346346
generation. This strategy does currently not provide full
347-
portability. Sequences are supported by Oracle and PostgreSql.
347+
portability. Sequences are supported by Oracle, PostgreSql and
348+
SQL Anywhere.
348349
- ``IDENTITY``: Tells Doctrine to use special identity columns in
349350
the database that generate a value on insertion of a row. This
350351
strategy does currently not provide full portability and is
351-
supported by the following platforms: MySQL/SQLite
352+
supported by the following platforms: MySQL/SQLite/SQL Anywhere
352353
(AUTO\_INCREMENT), MSSQL (IDENTITY) and PostgreSQL (SERIAL).
353354
- ``TABLE``: Tells Doctrine to use a separate table for ID
354355
generation. This strategy provides full portability.
@@ -391,7 +392,7 @@ besides specifying the sequence's name:
391392
</id>
392393
</entity>
393394
</doctrine-mapping>
394-
395+
395396
.. code-block:: yaml
396397
397398
Message:

0 commit comments

Comments
 (0)