Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

maxdb_autocommit(3) [php man page]

MAXDB_AUTOCOMMIT(3)							 1						       MAXDB_AUTOCOMMIT(3)

maxdb_autocommit - Turns on or off auto-commiting database modifications

       Procedural style

SYNOPSIS
bool maxdb_autocommit (resource $link, bool $mode) DESCRIPTION
Object oriented style bool maxdb::auto_commit (bool $mode) maxdb_autocommit(3) is used to turn on or off auto-commit mode on queries for the database connection represented by the $link resource. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Object oriented style <?php $maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB"); if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } /* turn autocommit on */ $maxdb->autocommit(TRUE); /* close connection */ $maxdb->close(); ?> Example #2 Procedural style <?php $link = maxdb_connect("localhost", "MONA", "RED", "DEMODB"); if (!$link) { printf("Can't connect to localhost. Error: %s ", maxdb_connect_error()); exit(); } /* turn autocommit on */ maxdb_autocommit($link, TRUE); /* close connection */ maxdb_close($link); ?> The above example will output something similar to: SEE ALSO
maxdb_commit(3), maxdb_rollback(3). PHP Documentation Group MAXDB_AUTOCOMMIT(3)

Check Out this Related Man Page

MAXDB_STAT(3)								 1							     MAXDB_STAT(3)

maxdb_stat - Gets the current system status

       Procedural style

SYNOPSIS
string maxdb_stat (resource $link) DESCRIPTION
Object oriented style string maxdb::stat (void ) maxdb_stat(3) returns a string containing several information about the MaxDB server running. RETURN VALUES
A string describing the server status. FALSE if an error occurred. EXAMPLES
Example #1 Object oriented style <?php $maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } printf ("System status: %s ", $maxdb->stat()); $maxdb->close(); ?> Example #2 Procedural style <?php $link = maxdb_connect("localhost", "MONA", "RED", "DEMODB"); /* check connection */ if (maxdb_connect_errno()) { printf("Connect failed: %s ", maxdb_connect_error()); exit(); } printf("System status: %s ", maxdb_stat($link)); maxdb_close($link); ?> The above example will output something similar to: System status: Kernel 7<...> SEE ALSO
maxdb_get_server_info(3). PHP Documentation Group MAXDB_STAT(3)
Man Page

3 More Discussions You Might Find Interesting

1. Web Development

[Solved] Disable mySQL autocommit

Hi. Does anyone know how I can disable auto-commit in mySQL? I've been Googling it for ages, and one suggestion that always comes up is adding this to /etc/my.cnf: ... init_connect='SET autocommit=0' But that didn't work. I then read that this wouldn't work anyway for a... (4 Replies)
Discussion started by: Scott
4 Replies

2. Shell Programming and Scripting

Cannot find localhost

I get a "not found" error from this localhost/choice.php ethan@meow:~$ ping 127.0.0.1 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.025 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.036 m and this ethan@meow:~$ mysql -u... (4 Replies)
Discussion started by: Meow613
4 Replies

3. UNIX for Beginners Questions & Answers

Telnet failed to localhost.

Hi, I am trying telnet to localhost 514. But the connection is refusing. Port does not appear in netstat. IP table service is also off. (5 Replies)
Discussion started by: Nishit
5 Replies