-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45aa443
commit 664e380
Showing
4 changed files
with
129 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Doctrine\DBAL; | ||
|
||
enum ArrayParameterType | ||
{ | ||
|
||
case INTEGER; | ||
case STRING; | ||
case ASCII; | ||
case BINARY; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
|
||
namespace Doctrine\DBAL; | ||
|
||
use Doctrine\DBAL\Cache\CacheException; | ||
use Doctrine\DBAL\Cache\QueryCacheProfile; | ||
use Doctrine\DBAL\Types\Type; | ||
|
||
/** | ||
* @phpstan-type WrapperParameterType = string|Type|ParameterType|ArrayParameterType | ||
* @phpstan-type WrapperParameterTypeArray = array<int<0, max>, WrapperParameterType>|array<string, WrapperParameterType> | ||
*/ | ||
class Connection | ||
{ | ||
/** | ||
* Executes an SQL statement with the given parameters and returns the number of affected rows. | ||
* | ||
* Could be used for: | ||
* - DML statements: INSERT, UPDATE, DELETE, etc. | ||
* - DDL statements: CREATE, DROP, ALTER, etc. | ||
* - DCL statements: GRANT, REVOKE, etc. | ||
* - Session control statements: ALTER SESSION, SET, DECLARE, etc. | ||
* - Other statements that don't yield a row set. | ||
* | ||
* This method supports PDO binding types as well as DBAL mapping types. | ||
* | ||
* @param literal-string $sql SQL statement | ||
* @param list<mixed>|array<string, mixed> $params Statement parameters | ||
* @param WrapperParameterTypeArray $types Parameter types | ||
* | ||
* @return int|string The number of affected rows. | ||
* | ||
* @throws Exception | ||
*/ | ||
public function executeStatement($sql, array $params = [], array $types = []); | ||
|
||
/** | ||
* Executes an, optionally parameterized, SQL query. | ||
* | ||
* If the query is parametrized, a prepared statement is used. | ||
* If an SQLLogger is configured, the execution is logged. | ||
* | ||
* @param literal-string $sql SQL query | ||
* @param list<mixed>|array<string, mixed> $params Query parameters | ||
* @param WrapperParameterTypeArray $types Parameter types | ||
* | ||
* @throws Exception | ||
*/ | ||
public function executeQuery( | ||
string $sql, | ||
array $params = [], | ||
$types = [], | ||
?QueryCacheProfile $qcp = null | ||
): Result; | ||
|
||
/** | ||
* Executes a caching query. | ||
* | ||
* @param literal-string $sql SQL query | ||
* @param list<mixed>|array<string, mixed> $params Query parameters | ||
* @param WrapperParameterTypeArray $types Parameter types | ||
* | ||
* @throws CacheException | ||
* @throws Exception | ||
*/ | ||
public function executeCacheQuery($sql, $params, $types, QueryCacheProfile $qcp): Result; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Doctrine\DBAL; | ||
|
||
enum ParameterType | ||
{ | ||
|
||
case NULL; | ||
case INTEGER; | ||
case STRING; | ||
case LARGE_OBJECT; | ||
case BOOLEAN; | ||
case BINARY; | ||
case ASCII; | ||
|
||
} |