Commit 5fafad03 authored by Andreas Fischer's avatar Andreas Fischer

No such word as 'aswell'.

parent 153e9cc1
......@@ -16,7 +16,7 @@ between the PHP community there are often native extensions for each database
vendor that are much more maintained (OCI8 for example).
Doctrine DBAL API builds on top of PDO and integrates native extensions by
wrapping them into the PDO API aswell. If you already have an open connection
wrapping them into the PDO API as well. If you already have an open connection
through the ``Doctrine\DBAL\DriverManager::getConnection()`` method you
can start using this API for data retrieval easily.
......@@ -263,7 +263,7 @@ the SQL and flattens the specified values into the set of parameters. Consider o
The sql statement passed to ``Connection#executeQuery`` is not the one actually passed to the
database. It is internally rewritten to look like the following explicit code that could
be specified aswell:
be specified as well:
.. code-block:: php
......
......@@ -40,7 +40,7 @@ example shows:
Now if you want to compare this schema with another schema, you can
use the ``Comparator`` class to get instances of ``SchemaDiff``,
``TableDiff`` and ``ColumnDiff``, aswell as information about other
``TableDiff`` and ``ColumnDiff``, as well as information about other
foreign key, sequence and index changes.
.. code-block:: php
......
......@@ -5,7 +5,7 @@ Besides abstraction of SQL one needs a translation between database
and PHP data-types to implement database independent applications.
Doctrine 2 has a type translation system baked in that supports the
conversion from and to PHP values from any database platform,
aswell as platform independent SQL generation for any Doctrine
as well as platform independent SQL generation for any Doctrine
Type.
Using the ORM you generally don't need to know about the Type
......
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