Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/iyzico/../nikic/../dflydev/../ramsey/../maennchen/../tijsverkoyen/.././psr/../phpoffice/./../dragonmantank/../nette/../authorizenet/../yajra/../theseer/.././bin/.././tijsverkoyen/../mockery/.././doctrine/dbal/src/Driver/../Driver
الملفات الموجودة في هذا الـ Path:
.
..
API
AbstractDB2Driver.php
AbstractException.php
AbstractMySQLDriver.php
AbstractOracleDriver
AbstractOracleDriver.php
AbstractPostgreSQLDriver.php
AbstractSQLServerDriver
AbstractSQLServerDriver.php
AbstractSQLiteDriver
AbstractSQLiteDriver.php
Connection.php
Exception
Exception.php
FetchUtils.php
IBMDB2
Middleware
Middleware.php
Mysqli
OCI8
PDO
PgSQL
Result.php
SQLSrv
SQLite3
ServerInfoAwareConnection.php
Statement.php

مشاهدة ملف: ServerInfoAwareConnection.php

<?php

namespace Doctrine\DBAL\Driver;

/**
 * Contract for a connection that is able to provide information about the server it is connected to.
 *
 * @deprecated The methods defined in this interface will be made part of the {@see Driver} interface
 * in the next major release.
 */
interface ServerInfoAwareConnection extends Connection
{
    /**
     * Returns information about the version of the database server connected to.
     *
     * @return string
     *
     * @throws Exception
     */
    public function getServerVersion();
}