Commit 7a07d8f5 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Add note on Schema Manager section that passed identifiers are not quoted automatically.

parent fd6d758d
......@@ -7,6 +7,13 @@ To retrieve the `SchemaManager` for your connection you can use the `getSchemaMa
Now with the `SchemaManager` instance in `$em` you can use the available methods to learn about your database schema:
> **NOTE**
>
> Parameters containing identifiers passed to the SchemaManager methods are *NOT* quoted automatically!
> Identifier quoting is really difficult to do manually in a consistent way across different databases.
> You have to manually quote the identifiers when you accept data from user- or other sources not under
> your control.
++ listDatabases()
Retrieve an array of databases on the configured connection:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment