Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fbsql_connect(3) [php man page]

FBSQL_CONNECT(3)							 1							  FBSQL_CONNECT(3)

fbsql_connect - Open a connection to a FrontBase Server

SYNOPSIS
resource fbsql_connect ([string $hostname = ini_get("fbsql.default_host")], [string $username = ini_get("fbsql.default_user")], [string $password = ini_get("fbsql.default_password")]) DESCRIPTION
fbsql_connect(3) establishes a connection to a FrontBase server. If a second call is made to fbsql_connect(3) with the same arguments, no new link will be established, but instead, the link identifier of the already opened link will be returned. The link to the server will be closed as soon as the execution of the script ends, unless it's closed earlier by explicitly calling fbsql_close(3). PARAMETERS
o $hostname - The server host name. o $username - The user name for the connection. o $password - The password for the connection. RETURN VALUES
Returns a positive FrontBase link identifier on success, or FALSE on errors. EXAMPLES
Example #1 fbsql_connect(3) example <?php $link = fbsql_connect("localhost", "_SYSTEM", "secret") or die("Could not connect"); echo "Connected successfully"; fbsql_close($link); ?> SEE ALSO
fbsql_pconnect(3), fbsql_close(3). PHP Documentation Group FBSQL_CONNECT(3)

Check Out this Related Man Page

FBSQL_ERROR(3)								 1							    FBSQL_ERROR(3)

fbsql_error - Returns the error message from previous operation

SYNOPSIS
string fbsql_error ([resource $link_identifier]) DESCRIPTION
Returns the error message from previous FrontBase operation. Errors coming back from the fbsql database backend don't issue warnings. Instead, use fbsql_error(3) to retrieve the error text. Note that this function only returns the error code from the most recently executed fbsql function (not including fbsql_error(3) and fbsql_errno(3)), so if you want to use it, make sure you check the value before calling another fbsql function. PARAMETERS
o $ link_identifier -A FrontBase link identifier returned by fbsql_connect(3) or fbsql_pconnect(3).If optional and not specified, the function will try to find an open link to the FrontBase server and if no such link is found it will try to create one as if fbsql_connect(3) was called with no arguments. RETURN VALUES
Returns the error text from the last fbsql function, or '' (the empty string) if no error occurred. EXAMPLES
Example #1 fbsql_error(3) Example <?php fbsql_connect("marliesle"); echo fbsql_errno() . ": " . fbsql_error() . "<br />"; fbsql_select_db("nonexistentdb"); echo fbsql_errno() . ": " . fbsql_error() . "<br />"; $conn = fbsql_query("SELECT * FROM nonexistenttable;"); echo fbsql_errno() . ": " . fbsql_error() . "<br />"; ?> SEE ALSO
fbsql_errno(3), fbsql_warnings(3). PHP Documentation Group FBSQL_ERROR(3)
Man Page

6 More Discussions You Might Find Interesting

1. Cybersecurity

"421 service not available, remote server has closed connection."?

"421 service not available, remote server has closed connection." I tried to do ftp to one of the unix server . ftp hostname password It get connects when i do any command it throws error ftp> ls "421 service not available, remote server has closed connection." (1 Reply)
Discussion started by: vishaldsh
1 Replies

2. HP-UX

Connection closed by foreign host

I am trying to connect to my HP server from remote machine. It gets connected but once credential are provided the connection is closed. adroit:/home/seo/hitendra 32 ] telnet myserv1 Trying... Connected to myserv1. Escape character is '^]'. Local flow control on Telnet TERMINAL-SPEED... (4 Replies)
Discussion started by: hiten.r.chauhan
4 Replies

3. Solaris

FTP

421 Service not available, remote server has closed connection, I am running a script on Tandeem Box. It establishes the connection to sun server and from sun server it pushes the file to tandeem box. Around 10 files are transfered properly after that I receive above error message. 05... (2 Replies)
Discussion started by: suyogg
2 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Manpages link

This link does not connect to anything. (1 Reply)
Discussion started by: Unregistered
1 Replies

5. UNIX for Advanced & Expert Users

Accessing secured server using shell script

Hi, I was trying to connect secure server using SFTP, but end up in error. Im looking for a shell script which will connect my secured FTP server For EG: hostname = example.com username = fed password = pass port = 993 Destination = web Push some tar file into web folder which is in... (3 Replies)
Discussion started by: Paulwintech
3 Replies

6. Shell Programming and Scripting

Need to use another file in script

hi everyone, i making script in KSH AIX server i n which i am calling sql connection, i want password and username stored in another directory and in my script it looks like sqlpus -s $username/$password @eod.sql and my username and password stored in file databaseconnection like this... (2 Replies)
Discussion started by: pallvi_mahajan
2 Replies