sesam_connect

sesam_connect -- Open SESAM database connection

Description

bool sesam_connect ( string catalog, string schema, string user)

The connection is always " persistant " in the sense that only the very first invocation will actually load the driver from the configured SESAM OML PLAM library .

Ejemplo 1 .

 
?php

 
if

 
(

 
!sesam_connect

 
("mycatalog"

 
,

 
"myschema"

 
,

 
"otto"

 
)

 
die("Unable

 
to

 
connect

 
to

 
SESAM"

 
;

 
?