diff --git a/lib/api/allitems-frame.html b/lib/api/allitems-frame.html index 9cc52fed1..21d379b63 100644 --- a/lib/api/allitems-frame.html +++ b/lib/api/allitems-frame.html @@ -4,7 +4,7 @@
- + @@ -18,8 +18,11 @@Deprecated Methods | |
---|---|
Doctrine\ORM\EntityManager\beginTransaction | +Starts a transaction on the underlying database connection. | +
Doctrine\ORM\EntityManager\commit | +Commits a transaction on the underlying database connection. | +
Doctrine\ORM\EntityManager\rollback | +Performs a rollback on the underlying database connection. | +
Doctrine\ORM\Mapping\ClassMetadataInfo\setTableName | Sets the name of the primary table the class is mapped to. |
public string $value
public Annotation(array data)
Class:AnnotationException - Superclass: Doctrine -Doctrine+
⌊ AnnotationException
Class:AnnotationException - Superclass: Exception +Exception
⌊ AnnotationException
public class AnnotationException
extends Doctrine
+
public class AnnotationException
extends Exception
Method Summary | |||
---|---|---|---|
static void | -semanticalError(mixed message) |
+static AnnotationException | +semanticalError(string message) Creates a new AnnotationException describing a Semantical error. |
static void | -syntaxError(mixed message) |
+static AnnotationException | +syntaxError(string message) Creates a new AnnotationException describing a Syntax error. |
public static void semanticalError(mixed message)
+public static AnnotationException semanticalError(string message)
Creates a new AnnotationException describing a Semantical error.
public static void syntaxError(mixed message)
+public static AnnotationException syntaxError(string message)
Creates a new AnnotationException describing a Syntax error.
www.doctrine-project.org
public AnnotationReader(Cache cache)
Constructor. Initializes a new AnnotationReader that uses the given -Cache provider.
Constructor. Initializes a new AnnotationReader that uses the given Cache provider.
public The getClassAnnotation(mixed class, string annotation, $class )
public array getClassAnnotations(string|ReflectionClass class)
public The getMethodAnnotation(ReflectionMethod method, string annotation)
public array getMethodAnnotations(mixed method, string|ReflectionClass class, string|ReflectionMethod property)
public The getPropertyAnnotation(ReflectionProperty property, string annotation)
public array getPropertyAnnotations(string|ReflectionProperty property, string|ReflectionClass class)
public void setAnnotationNamespaceAlias(mixed namespace, mixed alias, $alias )
public void setDefaultAnnotationNamespace(string defaultNamespace)
public final int T_AT = 101
public final int T_CLOSE_CURLY_BRACES = 102
public final int T_CLOSE_PARENTHESIS = 103
public final int T_COMMA = 104
public final int T_EQUALS = 105
public final int T_FALSE = 106
public final int T_FLOAT = 5
public final int T_IDENTIFIER = 2
public final int T_INTEGER = 3
public final int T_NAMESPACE_SEPARATOR = 107
public final int T_NONE = 1
public final int T_OPEN_CURLY_BRACES = 108
public final int T_OPEN_PARENTHESIS = 109
public final int T_STRING = 4
public final int T_TRUE = 110
protected void getCatchablePatterns()
protected void getNonCatchablePatterns()
Class Summary | |
---|---|
Annotation | Annotations class |
AnnotationException | Description of AnnotationException |
AnnotationReader | A reader for docblock annotations. |
Lexer | Simple lexer for docblock annotations. |
Parser | A simple parser for docblock annotations. |
Exception Summary | |
---|---|
AnnotationException | Description of AnnotationException |
A simple parser for docblock annotations.
www.doctrine-project.org
public Parser()
public mixed Annotation()
public array Annotations()
public array ArrayEntry()
public array Arrayx()
public array FieldAssignment()
public mixed PlainValue()
public mixed Value()
public array Values()
public bool match(int|string token)
public array parse(string docBlockString, string context)
public void setAnnotationNamespaceAlias(mixed namespace, mixed alias, $alias )
public void setDefaultAnnotationNamespace(mixed defaultNamespace, $defaultNamespace )
Base class for cache driver implementations.
www.doctrine-project.org
public void contains(mixed id)
public void delete(mixed id)
public array deleteAll()
public array deleteByPrefix(string prefix)
public array deleteByRegex(string regex)
public array deleteBySuffix(string suffix)
public void fetch(mixed id)
public abstract array getIds()
public void save(mixed id, mixed data, mixed lifeTime)
public void setNamespace(string namespace)
public ClassLoader(string ns, mixed includePath)
public string getFileExtension()
public string getIncludePath()
public string getNamespaceSeparator()
public boolean loadClass(mixed className, string classname)
public void register()
public void setFileExtension(string fileExtension)
public void setIncludePath(string includePath)
public void setNamespaceSeparator(string sep)
public void unregister()
public class ArrayCollection
-An ArrayCollection is a Collection implementation that uses a regular PHP array -internally.
An ArrayCollection is a Collection implementation that wraps a regular PHP array.
www.doctrine-project.org
public ArrayCollection(array elements)
public boolean add(mixed value)
public void clear()
public boolean contains(mixed element)
public boolean containsKey(mixed key)
public integer count()
public mixed current()
public boolean exists(Closure p)
public Collection filter(Closure p)
public mixed first()
public boolean forAll(Closure p)
public mixed get(mixed key)
public ArrayIterator getIterator()
public array getKeys()
public array getValues()
public mixed indexOf(mixed element)
public boolean isEmpty()
public mixed key()
public mixed last()
public Collection map(Closure func)
public mixed next()
public void offsetExists(mixed offset)
public void offsetGet(mixed offset)
public void offsetSet(mixed offset, mixed value)
public void offsetUnset(mixed offset)
public array partition(Closure p)
public mixed remove(mixed key)
Removes an element with a specific key/index from the collection.
Removes an element with a specific key/index from the collection.
public boolean removeElement(mixed element)
public void set(mixed key, mixed value)
public array toArray()
www.doctrine-project.org
public boolean add(mixed element)
public void clear()
public boolean contains(mixed element)
public boolean containsKey(string|integer key)
public void current()
public boolean exists(Closure p)
public Collection filter(Closure p)
public mixed first()
public boolean forAll(Closure p)
public mixed get(string|integer key)
public array getKeys()
public array getValues()
public mixed indexOf(mixed element)
public boolean isEmpty()
public void key()
public mixed last()
public Collection map(Closure func)
public void next()
public array partition(Closure p)
public mixed remove(string|integer key)
public mixed removeElement(mixed element)
public void set(string|integer key, mixed value)
public array toArray()
Class Summary | |
---|---|
ArrayCollection | An ArrayCollection is a Collection implementation that uses a regular PHP array -internally. |
ArrayCollection | An ArrayCollection is a Collection implementation that wraps a regular PHP array. |
void | -addEventSubscriber(Doctrine\Common\EventSubscriber subscriber) Adds an EventSubscriber. |
+addEventSubscriber(EventSubscriber subscriber) Adds an EventSubscriber. |
||||||||||||||||||||||||||
boolean | @@ -111,7 +111,7 @@ manager.
Field Summary | ||
---|---|---|
array The next token in the query string. | +array The next token in the input. | |
Method Summary | ||
protected abstract array | -Lexical catchable patterns |
+Lexical catchable patterns. |
string | @@ -89,7 +85,7 @@ Detail: Field | Method||
protected abstract array | -Lexical non-catchable patterns |
+Lexical non-catchable patterns. |
array|null | @@ -114,19 +110,20 @@ Detail: Field | Method||
void | -reset() Resets the scanner |
+reset() Resets the lexer. |
void | -Resets the peek pointer to 0 |
+Resets the peek pointer to 0. |
void | -resetPosition(integer position) Resets the lexer position on the input to the given position |
+resetPosition(integer position) Resets the lexer position on the input to the given position. |
void | -setInput(string input) Inputs data to be tokenized |
+setInput(string input) Sets the input data to be tokenized. + |
void | @@ -135,15 +132,15 @@ Detail: Field | Method
public array The next token in the query string. $lookahead
+public array The next token in the input. $lookahead
public array The last matched/seen token. $token
protected abstract array getCatchablePatterns()
Lexical catchable patterns
Lexical catchable patterns.
public string getLiteral(integer token)
protected abstract array getNonCatchablePatterns()
Lexical non-catchable patterns
Lexical non-catchable patterns.
public array|null glimpse()
public boolean isA(mixed value, integer token)
public boolean isNextToken(integer|string token)
public array|null moveNext()
public array peek()
public void reset()
Resets the scanner
Resets the lexer.
public void resetPeek()
Resets the peek pointer to 0
Resets the peek pointer to 0.
public void resetPosition(integer position)
Resets the lexer position on the input to the given position
Resets the lexer position on the input to the given position.
public void setInput(string input)
Inputs data to be tokenized
Sets the input data to be tokenized.
The Lexer is immediately reset and the new input tokenized. +Any unprocessed tokens from any previous input are lost.
public void skipUntil(mixed type, $type The)
Interface Summary | |
---|---|
Comparable | Contract for classes whose instances have a natural ordering. |
Equatable | Contract for classes whose instances can be compared for equality by means of +an explicit {@link equals} method. |
EventSubscriber | An EventSubscriber knows himself what events he is interested in. |
NotifyPropertyChanged | Contract for classes that provide the service of notifying listeners of
diff --git a/lib/api/doctrine/common/package-tree.html b/lib/api/doctrine/common/package-tree.html
index 50724c0ce..fe3918d71 100644
--- a/lib/api/doctrine/common/package-tree.html
+++ b/lib/api/doctrine/common/package-tree.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/propertychangedlistener.html b/lib/api/doctrine/common/propertychangedlistener.html
index ed777d0e6..1a401631c 100644
--- a/lib/api/doctrine/common/propertychangedlistener.html
+++ b/lib/api/doctrine/common/propertychangedlistener.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/debug.html b/lib/api/doctrine/common/util/debug.html
index 91b3ec18a..c6522806e 100644
--- a/lib/api/doctrine/common/util/debug.html
+++ b/lib/api/doctrine/common/util/debug.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/inflector.html b/lib/api/doctrine/common/util/inflector.html
index a97156dfc..3cc99d2ec 100644
--- a/lib/api/doctrine/common/util/inflector.html
+++ b/lib/api/doctrine/common/util/inflector.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/package-frame.html b/lib/api/doctrine/common/util/package-frame.html
index a11fa2db9..1012a8acf 100644
--- a/lib/api/doctrine/common/util/package-frame.html
+++ b/lib/api/doctrine/common/util/package-frame.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/package-functions.html b/lib/api/doctrine/common/util/package-functions.html
index ccd6c2f13..8cbe007a4 100644
--- a/lib/api/doctrine/common/util/package-functions.html
+++ b/lib/api/doctrine/common/util/package-functions.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/package-globals.html b/lib/api/doctrine/common/util/package-globals.html
index 86b6167f3..19dce14e9 100644
--- a/lib/api/doctrine/common/util/package-globals.html
+++ b/lib/api/doctrine/common/util/package-globals.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/package-summary.html b/lib/api/doctrine/common/util/package-summary.html
index 1f9e95fbf..3e18934bc 100644
--- a/lib/api/doctrine/common/util/package-summary.html
+++ b/lib/api/doctrine/common/util/package-summary.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/util/package-tree.html b/lib/api/doctrine/common/util/package-tree.html
index 49adc51dc..512831cda 100644
--- a/lib/api/doctrine/common/util/package-tree.html
+++ b/lib/api/doctrine/common/util/package-tree.html
@@ -4,7 +4,7 @@
-
+
diff --git a/lib/api/doctrine/common/version.html b/lib/api/doctrine/common/version.html
index e745e1715..702507538 100644
--- a/lib/api/doctrine/common/version.html
+++ b/lib/api/doctrine/common/version.html
@@ -4,7 +4,7 @@
-
+
@@ -37,7 +37,7 @@ Detail: Field | Method
Doctrine\Common\Version
-/Doctrine/Common/Version.php at line 36
+/Doctrine/Common/Version.php at line 34
Class Version@@ -83,7 +83,7 @@ Detail: Field | Method |
public final str VERSION = '2.0-DEV'
public static int compare(string version)
Configuration container for the Doctrine DBAL.
www.doctrine-project.org
Constructor Summary | |
---|---|
Creates a new DBAL configuration instance. |
-
Method Summary | |
---|---|
protected array $_attributes = array()
public Configuration()
-Creates a new DBAL configuration instance.
public SQLLogger getSQLLogger()
public void setSQLLogger(SQLLogger logger)
Constant for transaction isolation level SERIALIZABLE.
The wrapped driver connection.
The used DBAL driver.
The DatabasePlatform object that provides information about the database platform used by the connection.
exec(string statement)
Execute an SQL statement and return the number of affected rows.
executeQuery(string query, array params)
Executes an, optionally parameterized, SQL query.
fetchAssoc(string statement, array params)
Prepares and executes an SQL query and returns the first row of the result +as an associative array.
fetchColumn(string statement, array params, int colnum)
Prepares and executes an SQL query and returns the value of a single column of the first row of the result.
fetchRow(string statement, array params)
Prepares and executes an SQL query and returns the first row of the result -as an associative array.
Gets the Configuration used by the Connection.
Gets the name of the database this Connection is connected to.
Gets the DatabasePlatform for the connection.
Gets the DBAL driver instance.
Gets the EventManager used by the Connection.
getPort()
Gets the port of the currently connected database.
Check whether the current transaction is marked for rollback only.
Gets the SchemaManager that can be used to inspect or change the database schema through the connection.
Gets the username used by this connection.
Gets the wrapped driver connection.
Check whether the current transaction is marked for rollback only.
Checks whether a transaction is currently active.
prepare(string statement)
Prepares an SQL statement.
query(string statement, integer fetchType)
Executes an SQL statement, returning a result set as a Statement object.
setTransactionIsolation(integer level)
Sets the transaction isolation level.
transactional(Closure func)
Executes a function in a transaction. +
update(mixed tableName, mixed data, array identifier, string table)
Executes an SQL UPDATE statement on a table.
public final int TRANSACTION_READ_COMMITTED = 2
public final int TRANSACTION_READ_UNCOMMITTED = 1
public final int TRANSACTION_REPEATABLE_READ = 3
public final int TRANSACTION_SERIALIZABLE = 4
protected Doctrine\DBAL\Configuration $_config
+protected Configuration $_config
protected Doctrine\DBAL\Driver\Connection $_conn
+protected Connection $_conn
The wrapped driver connection.
protected Doctrine\DBAL\Driver $_driver
+protected Driver $_driver
The used DBAL driver.
protected Doctrine\Common\EventManager $_eventManager
+protected EventManager $_eventManager
protected Doctrine\DBAL\Platforms\AbstractPlatform $_platform
+protected AbstractPlatform $_platform
The DatabasePlatform object that provides information about the database platform used by the connection.
protected Doctrine\DBAL\Schema\SchemaManager $_schemaManager
public Connection(array params, Driver driver, Configuration config, EventManager eventManager)
public void beginTransaction()
public void close()
public void commit()
public boolean connect()
public mixed convertToDatabaseValue(mixed value, string type)
public mixed convertToPHPValue(mixed value, string type)
public integer delete(mixed tableName, array identifier, string table)
public integer errorCode()
public array errorInfo()
public integer exec(string statement)
public Doctrine\DBAL\Driver\Statement executeQuery(string query, array params)
+public Statement executeQuery(string query, array params)
Executes an, optionally parameterized, SQL query.
If the query is parameterized, a prepared statement is used. If an SQLLogger is configured, the execution is logged.
public integer executeUpdate(string query, array params, array types)
This method supports PDO binding
public array fetchAll(string sql, array params)
This method supports PDO binding
public array fetchArray(string statement, array params)
public array fetchAssoc(string statement, array params)
+Prepares and executes an SQL query and returns the first row of the result +as an associative array.
public mixed fetchColumn(string statement, array params, int colnum)
public array fetchRow(string statement, array params)
-Prepares and executes an SQL query and returns the first row of the result -as an associative array.
public Doctrine\DBAL\Configuration getConfiguration()
+public Configuration getConfiguration()
Gets the Configuration used by the Connection.
public string getDatabase()
public Doctrine\DBAL\Platforms\AbstractPlatform getDatabasePlatform()
+public AbstractPlatform getDatabasePlatform()
Gets the DatabasePlatform for the connection.
public Doctrine\DBAL\Driver getDriver()
+public Driver getDriver()
Gets the DBAL driver instance.
public Doctrine\Common\EventManager getEventManager()
+public EventManager getEventManager()
Gets the EventManager used by the Connection.
public string getHost()
public array getParams()
public string getPassword()
public mixed getPort()
public boolean getRollbackOnly()
-Check whether the current transaction is marked for rollback only.
public Doctrine\DBAL\Schema\SchemaManager getSchemaManager()
public integer getTransactionIsolation()
public integer getTransactionNestingLevel()
public string getUsername()
public Doctrine\DBAL\Driver\Connection getWrappedConnection()
+public Connection getWrappedConnection()
Gets the wrapped driver connection.
public integer insert(mixed tableName, array data, string table)
public boolean isConnected()
public boolean isRollbackOnly()
+Check whether the current transaction is marked for rollback only.
public boolean isTransactionActive()
public string lastInsertId(string seqName)
public Doctrine\DBAL\Driver\Statement prepare(string statement)
+public Statement prepare(string statement)
Prepares an SQL statement.
public mixed project(string query, array params, mixed function, Closure mapper)
public Doctrine\DBAL\Driver\Statement query(string statement, integer fetchType)
+public Statement query(string statement, integer fetchType)
Executes an SQL statement, returning a result set as a Statement object.
public string quote(mixed input, string type)
public string quoteIdentifier(string str)
public void rollback()
public void setCharset(string charset)
public void setRollbackOnly()
public void setTransactionIsolation(integer level)
public void transactional(Closure func)
+Executes a function in a transaction.
The function gets passed this Connection instance as an (optional) parameter.
If an exception occurs during execution of the function or transaction commit, +the transaction is rolled back and the exception re-thrown.
public integer update(mixed tableName, mixed data, array identifier, string table)
Method Summary | ||
---|---|---|
Doctrine\DBAL\Driver\Connection | +Connection | connect(array params, string username, string password, array driverOptions) Attempts to create a connection with the database. |
string | -getDatabase(Doctrine\DBAL\Connection conn) Get the name of the database connected to for this driver. |
+getDatabase(Connection conn) Get the name of the database connected to for this driver. |
Doctrine\DBAL\Platforms\AbstractPlatform | +AbstractPlatform | Gets the DatabasePlatform instance that provides all the metadata about the platform this driver connects to. |
Doctrine\DBAL\SchemaManager | -getSchemaManager(Doctrine\DBAL\Connection conn) Gets the SchemaManager that can be used to inspect and change the underlying + | getSchemaManager(Connection conn) Gets the SchemaManager that can be used to inspect and change the underlying database schema of the platform this driver connects to. |
public Doctrine\DBAL\Driver\Connection connect(array params, string username, string password, array driverOptions)
+public Connection connect(array params, string username, string password, array driverOptions)
Attempts to create a connection with the database.
public string getDatabase(Doctrine\DBAL\Connection conn)
+public string getDatabase(Connection conn)
Get the name of the database connected to for this driver.
public Doctrine\DBAL\Platforms\AbstractPlatform getDatabasePlatform()
+public AbstractPlatform getDatabasePlatform()
Gets the DatabasePlatform instance that provides all the metadata about the platform this driver connects to.
public string getName()
public Doctrine\DBAL\SchemaManager getSchemaManager(Doctrine\DBAL\Connection conn)
+public Doctrine\DBAL\SchemaManager getSchemaManager(Connection conn)
Gets the SchemaManager that can be used to inspect and change the underlying database schema of the platform this driver connects to.
This resembles (a subset
public void beginTransaction()
This resembles (a subset
public void commit()
This resembles (a subset
public void errorCode()
This resembles (a subset
public void errorInfo()
This resembles (a subset
public void exec(mixed statement)
This resembles (a subset
public void lastInsertId(mixed name)
This resembles (a subset
public void prepare(mixed prepareString)
This resembles (a subset
public void query()
This resembles (a subset
public void quote(mixed input, mixed type)
This resembles (a subset
public void rollBack()
public void bindParam(mixed column, mixed variable, mixed type)
public void bindValue(mixed param, mixed value, mixed type)
public boolean closeCursor()
public void columnCount()
public void errorCode()
public void errorInfo()
public void execute(mixed params)
public void fetch(mixed fetchStyle)
public void fetchAll(mixed fetchStyle)
public void fetchColumn(mixed columnIndex)
public void rowCount()
Class:Connection - Superclass: PDO PDO-
⌊ Connection
public class Connection
extends PDO
@@ -67,49 +62,52 @@ PDO
⌊ Connection
Begins a database transaction.
{@inheritdoc}
commit()
Performs the commit.
commit()
{@inheritdoc}
rollback()
Performs the rollback.
lastInsertId(mixed name)
{@inheritdoc}
rollback()
{@inheritdoc}
public void beginTransaction()
Begins a database transaction.
public void commit()
Performs the commit.
public void lastInsertId(mixed name)
+public void rollback()
Performs the rollback.
Method Summary | ||
---|---|---|
Doctrine\DBAL\Driver\Connection | +Connection | connect(array params, string username, string password, array driverOptions) Attempts to establish a connection with the underlying driver. |
public Doctrine\DBAL\Driver\Connection connect(array params, string username, string password, array driverOptions)
+public Connection connect(array params, string username, string password, array driverOptions)
Attempts to establish a connection with the underlying driver.
public void getDatabase(mixed conn)
public void getDatabasePlatform()
public void getName()
public void getSchemaManager(mixed conn)
Method Summary | |||
---|---|---|---|
Doctrine\DBAL\Driver\Connection | +Connection | connect(mixed params, mixed username, mixed password, mixed driverOptions) Attempts to connect to the database and returns a driver connection on success. |
|
getName() |
|||
Doctrine\DBAL\Schema\SqliteSchemaManager | -getSchemaManager(Doctrine\DBAL\Connection conn) Gets the schema manager that is relevant for this driver. |
+SqliteSchemaManager | +getSchemaManager(Connection conn) Gets the schema manager that is relevant for this driver. |
protected array $_userDefinedFunctions = array(...)
public Connection connect(array params, string username, string password, array driverOptions)
public void getDatabase(mixed conn)
public void getDatabasePlatform()
public void getName()
public Doctrine\DBAL\Schema\SqliteSchemaManager getSchemaManager(Doctrine\DBAL\Connection conn)
+public SqliteSchemaManager getSchemaManager(Connection conn)
Gets the schema manager that is relevant for this driver.
Method Summary | |||
---|---|---|---|
static Doctrine\DBAL\Connection | -getConnection(array params, mixed config, mixed eventManager, Doctrine\Common\EventManager The) Creates a connection object based on the specified parameters. + | static Connection | +getConnection(array params, mixed config, mixed eventManager, EventManager The) Creates a connection object based on the specified parameters. |
public static Doctrine\DBAL\Connection getConnection(array params, mixed config, mixed eventManager, Doctrine\Common\EventManager The)
+public static Connection getConnection(array params, mixed config, mixed eventManager, EventManager The)
Creates a connection object based on the specified parameters. This method returns a Doctrine\DBAL\Connection which wraps the underlying diff --git a/lib/api/doctrine/dbal/event/connectioneventargs.html b/lib/api/doctrine/dbal/event/connectioneventargs.html index 112f7516e..5d018c324 100644 --- a/lib/api/doctrine/dbal/event/connectioneventargs.html +++ b/lib/api/doctrine/dbal/event/connectioneventargs.html @@ -4,7 +4,7 @@
- + @@ -76,19 +76,19 @@ Detail: Field | MethodMethod Summary | ||
---|---|---|
Doctrine\DBAL\Connection | +Connection | |
Doctrine\DBAL\Platforms\AbstractPlatform | +AbstractPlatform | |
Doctrine\DBAL\Driver | +Driver | |
Doctrine\DBAL\Schema\AbstractSchemaManager | +AbstractSchemaManager |
public Doctrine\DBAL\Connection getConnection()
+public Connection getConnection()
public Doctrine\DBAL\Platforms\AbstractPlatform getDatabasePlatform()
+public AbstractPlatform getDatabasePlatform()
public Doctrine\DBAL\Driver getDriver()
+public Driver getDriver()
public Doctrine\DBAL\Schema\AbstractSchemaManager getSchemaManager()
+public AbstractSchemaManager getSchemaManager()
getTemporaryTableName(string tableName)
Some vendors require temporary table names to be qualified specially.
A method to return the required SQL string that fits between CREATE ...
Some databases don't allow to create and drop databases at all or only with certain tools.
supportsForeignKeyConstraints()
Does the platform supports foreign key constraints?
public void convertBooleans(mixed item)
public bool createsExplicitIndexForForeignKeys()
public string fixSchemaElementName(mixed schemaElementName, string schemaName)
public string getAdvancedForeignKeyOptionsSQL(ForeignKeyConstraint foreignKey)
public abstract void getClobTypeDeclarationSQL(array field)
public string getColumnCharsetDeclarationSQL(string charset)
public string getColumnCollationDeclarationSQL(string collation)
public void getCreateDatabaseSQL(mixed database)
public void
A reader for docblock annotations.