PHP Velho Oeste 2024

mssql_pconnect

(PHP 4, PHP 5, PECL odbtp >= 1.1.1)

mssql_pconnectОткрывает постоянное соединение с MS SQL

Внимание

Эта функция УДАЛЕНА в PHP 7.0.0.

Есть следующие альтернативы:

Описание

mssql_pconnect ([ string $servername [, string $username [, string $password [, bool $new_link = FALSE ]]]] ) : resource

mssql_pconnect() работает практически также как и mssql_connect(), но с двумя большими отличиями.

Первое: когда происходит соединение, функция сначала пытается найти уже открытое соединение к тому же хосту, с теми же логином и паролем. Если такое соединение будет найдено, то вместо создания нового соединения, будет возвращен идентификатор найденного.

Второе: соединение с сервером MS SQL не будет закрыто после того, как скрипт завершит свою работу. Вместо этого, ссылка останется открытой для последующего использования. (mssql_close() не закрывает соединения, открытые mssql_pconnect()).

Такой тип соединения называется 'постоянным' (persistent).

Список параметров

servername

Сервер MS SQL. Также может содержать порт, т.е. hostname:port.

username

Имя пользователя.

password

Пароль.

new_link

Если функция mssql_pconnect() будет вызвана повторно с теми же самыми аргументами, то будет возвращен идентификатор уже существующего соединения, а не создание нового. Этот параметр меняет заданное поведение, вынуждая mssql_pconnect() всегда создавать новое соединение, даже если mssql_pconnect() была вызвана ранее с теми же аргументами.

Возвращаемые значения

Возвращает корректный идентификатор постоянного соединения с MS SQL, или FALSE в случае ошибки.

Примеры

Пример #1 Использование mssql_pconnect() с параметром new_link

<?php
// Соединяемся с MSSQL и выбираем базу
$link1 mssql_pconnect('MANGO\SQLEXPRESS''sa''phpfi');
mssql_select_db('php'$link1);

// Создаем второе соединение
$link2 mssql_pconnect('MANGO\SQLEXPRESS''sa''phpfi'true);
mssql_select_db('random'$link2);
?>

add a note add a note

User Contributed Notes 5 notes

up
3
m1tk4 at hotmail dot com
21 years ago
Be careful with pconnect!

Platform: RH Linux 7.3, PHP 4.2.1. FreeTDS.

pconnect does give you better time than connect (about 0.25-0.4 seconds gain) BUT:

- occasionally, I've experienced "quirks" when fetch() would randomly return empty recordsets from stored procedurest that can_not return empty recordsets by definition.

- if you restart MSSQL server while some of the connections did not time out, next pconnect() will not establish a new connection! It will return an old one, so next time you do execute() or query() your script will just _hang_ until timeouted by Apache.

All of the above I believe are FreeTDS problems, not PHP. I wonder if somebody with PHP+Sybase lib got pconnect to work.
up
1
kagaku at gmail dot com
12 years ago
Be careful when utilizing mssql_pconnect to connect to multiple databases on the same server using different credentials. For example:

<?php
/* first connection */
$conn1 = mssql_pconnect('production-server','sa','1234');
mssql_select_db($conn1,'invoicelistdb');

$row = mssql_query('select top 10 * from invoices', $conn1);

/* open another connection, same server different */
$conn2 = mssql_pconnect('production-server','loweruser','6789');
mssql_select_db($conn2,'someotherdb');

?>

Results in the error:

PHP Warning:  mssql_select_db(): Unable to select database:  someotherdb

I suspect mssql_pconnect detects a connect opened to "production-server" and just re-uses it, regardless of whether or not the credentials are the same. We did not notice this until consolidating two different MSSQL servers onto one server with two databases with different users/permissions. Reverting back to mssql_connect() solves the problem.
up
-1
dave at dontspamme dot com
20 years ago
If you are running PHP/Apache combination on a Windows machine that is part of a domain, using NT Authentication to connect to a MS SQL Server, you must to do the following things:

1) Turn NT Authentication On (under MSSQL in php.ini)
2) Configure the Apache service to run as the user that is authorized to access the MS SQL server.

Hope this helps save someone the time that it took me to track down!
up
-3
php at rawhide dot cjb dot net
22 years ago
One should not that persistent connections are not persistent under a CGI interface.
up
-4
php at burntpopcorn dot net
20 years ago
Please note that mssql_pconnect creates a connection for the pool for *each process*. If you have "ThreadsPerChild" set to 50 in apache, and mssql.max_procs set to 25 in php, then eventually you will get mssql_pconnect failing to give you a connection to the database. This has stumped me for quite a while, and the answer finally presented itself thanks to the people in #php.
To Top