PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ibase_db_info> <ibase_commit
Last updated: Fri, 27 Jun 2008

view this page in

ibase_connect

(PHP 4, PHP 5)

ibase_connect — Otwiera połączenie z serwerem Firebird/InterBase

Opis

resource ibase_connect ([ string $baza danych [, string $użytkownik [, string $hasło [, string $zestaw znaków [, int $bufory [, int $dialekt [, string $rola [, int $synchronizacja ]]]]]]]] )

Nawiązuje połączenie z serwerem Firebird/InterBase. Argument baza danych jest ścieżką do pliku bazy danych (lub aliasem zapisanym w pliku aliases.conf) na serwerze na którym się znajduje. Jeżeli serwer nie jest uruchomiony lokalnie, ścieżka musi być poprzedzona łańcuchem 'nazwa_hosta:' (TCP/IP), '//nazwa_hosta/' (NetBEUI) lub 'nazwa_hosta@' (IPX/SPX), w zależności od używanego protokołu. Argumenty użytkownik i hasło mogą być być ustawione za pomocą dyrektyw konfiguracyjnych PHP: ibase.default_user i ibase.default_password. Argument zestaw znaków jest domyślnym zestawem znaków narodowych dla bazy danych. Argument bufory jest liczbą buforów bazy danych jaką ma zaalokować serwer w swojej pamięci podręcznej. Jeżeli jest ustawiony na 0 lub jest pominięty, serwer wybiera wartość domyślną. Argument dialekt ustawia domyślny dialekt SQL dla każdego segmentu wykonywanego podczas połączenia, domyślnie jest on usawiony na najwyższy obsługiwany przez biblioteki klienta.

W przypadku ponownego wywołania funkcji ibase_connect() z takimi samymi argumentami, nie jest otwierane nowe połączenie, jednak w to miejsce powinien zostać zwrócony identyfikator już otwartego połączenia. Połączenie do serwera powinno zostać zamknięte wkrótce po tym kiedy wykonywanie skryptu PHP się zakończy, o ile nie zostanie zamknięte wcześniej przez jawne wywołanie funkcji ibase_close().

Example #1 ibase_connect() przykład

<?php
    $host 
'localhost:/sciezka/do/mojej_bazy.fdb';

    
$dbh ibase_connect($host$username$password'ISO8859_2');
    
$stmt 'SELECT * FROM NAZWA_TABELI';
    
$sth ibase_query($dbh$stmt);
    while (
$row ibase_fetch_object($sth)) {
        echo 
$row->NAZWA_KOLUMNY"\n";
    }
    
ibase_free_result($sth);
    
ibase_close($dbh);
?>

Informacja: Opcjonalny argument bufory został dodany w PHP 4.0.0.

Informacja: Opcjonalny argument dialekt został dodany w PHP 4.0.0 i działa tylko z InterBase 6 i późniejszymi wersjami.

Informacja: Opcjonalny argument rola został dodany w PHP 4.0.0 i działa tylko z InterBase 5 i późniejszymi wersjami.

Informacja: Jeżeli są zwracane błędy takie jak "arithmetic exception, numeric overflow, lub string truncation. Cannot transliterate character between character sets" (to może się zadrzyć w przypadku użycia niektórych znaków narodowych) po użyciu funkcji ibase_query() powinieneś ustawić kodowanie znaków (na ISO8859_1 lub Twoje bieżące kodowanie znaków - ISO8859_2, WIN1250).

Zobacz również ibase_pconnect() i ibase_close().



ibase_db_info> <ibase_commit
Last updated: Fri, 27 Jun 2008
 
add a note add a note User Contributed Notes
ibase_connect
kgbfernando at yahoo dot com dot br
22-Jan-2008 03:25
If you have this problem:

Warning: ibase_connect(): Unable to complete network request to host "localhost"
. Failed to locate host machine. Undefined service gds_db/tcp.  in C:\\wamp\\php\\ibase.php on line 5

This is because php is deployed with old client library gds32.dll.

To resolve this, update this library to Firebird latest version of fbclient.dll, of course, rename it to gds32.dll and overwrite into php dir.

Or simply don't use localhost ou 127.0.0.1, use computer name.
fb dot bird at gmail dot com
10-Aug-2007 11:32
Remember for different locations
of php.ini file:

..\xampp\php\php.ini
..\xampp\apache\bin\php.ini
..\xampp\php\php4\php.ini

Please do not confuse this
and know location _loaded_ *.ini-file!
Łukasz Wojciechowski
11-Feb-2007 12:06
ag at dividi dot de wrote:
"
The solution is to insert the line
gds_db    3050/tcp    #firebird Database
into the windows services file %WINDIR%\\system32\\drivers\\etc\\services
"

...but it is very important to hit ENTER at the end of this line:
gds_db    3050/tcp    #firebird Database

I spent 2 hours before I discover this - I love Windows ;-)

--
greetings
ag at dividi dot de
20-Sep-2005 02:07
With php5 on Windows i couldnt connect to a firebird database with following error :

Warning: ibase_connect(): Unable to complete network request to host "localhost"
. Failed to locate host machine. Undefined service gds_db/tcp.  in C:\\wamp\\php\\ibase.php on line 5

the connect command was "$dbh = ibase_connect ("localhost:path_to_file.fdb", $username, $password);"

The solution is to insert the line
gds_db    3050/tcp    #firebird Database
into the windows services file %WINDIR%\\system32\\drivers\\etc\\services
Robert Silvia
05-Dec-2004 02:02
Just to update Simon's note...

Things must have been fixed since Simon wrote that note.
With PHP5 the following example works flawlessly:

$strconnect = 'localhost:/opt/firebird/examples/employee.fdb';

if (!($db=ibase_connect($strconnect, 'sysdba', 'yourpass', 'ISO8859_1', 0, 1)))
    die('Could not connect: ' .  ibase_errmsg());

  $sql  = "SELECT PO_NUMBER, ORDER_STATUS, ITEM_TYPE FROM SALES";
  $cursor = ibase_query($sql);
  $row_array = ibase_fetch_row($cursor);
  
  print_r($row_array);

  ibase_free_result($cursor);
  ibase_close($db);

Also you CAN get away with the following connection string:
ibase_connect('/opt/firebird/examples/employee.fdb', 'sysdba', 'yourpass')
sam at intranex.ru
05-Aug-2004 01:08
If you get a sloooow work of ibase_connect on Win2003, try to update your FireBird to version 1.5 or above, and your InterBase to version 7.1. Or move back to Win2000 :)
simon at thorndancer dot com
15-Jun-2003 08:22
I found it difficult to get anything working using the current documentation.
While logic would suggest that the format in the docs should work (being based on all the
syntax of other standard database access functions) I had problem after problem. Finally I
found some comments on a newgroup that helped, and this is the result.

This is actual production code (not a mere example). It works.
Don't ask me why it is so different from the official docs.

if ( ibase_connect( $db_filespec,$db_user,$db_pass_word) )
{
    $query  = "SELECT c.id, c.title, c.description ";   
    $query .= "FROM collections c ";  
    $query .= "WHERE (c.id = $page_id) ";                                      

    $result = ibase_query( $query );

    $row_array = ibase_fetch_row($result);

    $row_fetched = !empty($row_array);

    if ($row_fetched)     
    {                    
       // Extract the row into variables

        $collection_id   = $row_array[0];           
       $edit_title      = $row_array[1];           
       $edit_desc       = $row_array[2];           

       // Standardise the record contents

        $collection_id   = $collection_id + 0;      // force type to numeric
     }

    // Wrap up the database side of things

     ibase_commit();     // note parenthesis but no parameters.

     ibase_close;        // note total lack of parenthesis and parameters !
}
       
You'll notice that there is no reference to a database handle in this code.
It seems to be implicit when dealing with interbase functions. Certainly, I couldn't
get the code to work when using it explicitly. This makes the documentation
very hard to work with, and any reference to a handle needs to be ignored.

Important: ibase_close doesn't work for me if I put parenthesis after it.
eg:
        ibase_close;        // works
        ibase_close();      // fails
        ibase_close($db);   // fails
       
Note: the line "if ($row_fetched)" could be replaced with "while ($row_fetched)"
if you need to process more than one record.

All that said, Interbase is a fantastic database to work with and IMHO a much
better choice than something like PostgreSQL if you need to move up from MySQL
to something more industrial strength. Just be sure to RTFM.
anthony at trams dot com
21-Nov-2000 04:44
If you get a message like: 'Dynamic SQL Error SQL error code = -901 feature is not supported', this may be caused by InterBASE client 6.01 accessing a server running 5.x.

Make sure the dialect value is set to '1', like the following:

ibase_connect ('localhost:/usr/db/db.gdb', 'SYSDBA', 'masterkey', 'ISO8859_1', '100', '1' ) ;

That last value is the dialect, but you need the two preceding also, do avoid errors.


Anthony

ibase_db_info> <ibase_commit
Last updated: Fri, 27 Jun 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites