Новые книги

Между отделами маркетинга и продаж нередки споры, из-за которых компания в целом теряет прибыль. Эта книга призвана помочь распознавать и вовремя тушить конфликты. Можно сразу прикинуть сколько будет стоить каждая из 25 предложенных мер, кому ее поручить и сколько времени займет исполнение.

В конечном счете от согласованных действий двух отделов зависит прибыль компании.

Для руководителей и персонала отделов маркетинга и продаж, коммерческих директоров, руководителей компании и собственников бизнеса.
The Windows Driver Model has two separate but equally important aspects. First, the core model describes the standard structure for device drivers. Second, Microsoft provides a series of bus and class drivers for common types of devices.

The core WDM model describes how device drivers are installed and started, and how they should service user requests and interact with hardware. A WDM device driver must fit into the Plug and Play (PnP) system that lets users plug in devices that can be configured in software.

Microsoft provides a series of system drivers that have all the basic functionality needed to service many standard types of device. The first type of system driver supports different types of bus, such as the Universal Serial Bus (USB), IEEE 1394 (FireWire) and Audio port devices. Other class drivers implement standard Windows facilities such as Human Input Devices (HID) and kernel streaming. Finally, the Still Image Architecture (STI) provides a framework for handling still images, scanners, etc.

These system class drivers can make it significantly easier to write some types of device driver. For example, the USB system drivers handle all the low-level communications across this bus. A well defined interface is made available to other drivers. This makes it fairly straightforward to issue requests to the USB bus.

fbsql_close

Учебник РНР
Назад Вперёд

fbsql_close

(PHP 4 >= 4.0.6)

fbsql_close - закрывает FrontBase-соединение.

Описание

boolean fbsql_close ([resource link_identifier])

Возвращает: TRUE при успехе, FALSE при ошибке.

fbsql_close() закрывает соединение с FrontBase-сервером, ассоциированным со специфицированным идентификатором ссылки/link identifier. Если link_identifier не специфицирован, используется последняя открытая ссылка.

Использовать fbsql_close() обычно не нужно, так как непостоянные открытые ссылки автоматически закрываются в конце выполнения скрипта.

Пример 1. fbsql_close()
<?php
    $link = fbsql_connect ("localhost", "_SYSTEM", "secret")
        or die ("Could not connect");
    print ("Connected successfully");
    fbsql_close ($link);
?>

См. также fbsql_connect() и fbsql_pconnect().


Назад Оглавление Вперёд
fbsql_change_user Вверхfbsql_commit