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_KILL(3)								 1							     MAXDB_KILL(3)

maxdb_kill - Disconnects from a MaxDB server

       Procedural style

SYNOPSIS
bool maxdb_kill (resource $link, int $processid) DESCRIPTION
Object oriented style bool maxdb::kill (int $processid) This function is used to disconnect from a MaxDB server specified by the $processid parameter. RETURN VALUES
Returns TRUE on success or FALSE on failure. 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(); } /* determine our thread id */ $thread_id = $maxdb->thread_id; /* Kill connection */ $maxdb->kill($thread_id); /* This should produce an error */ if (!$maxdb->query("CREATE TABLE myCity LIKE City")) { printf("Error: %s ", $maxdb->error); exit; } /* close connection */ $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(); } /* determine our thread id */ $thread_id = maxdb_thread_id($link); /* Kill connection */ maxdb_kill($link, $thread_id); /* This should produce an error */ if (!maxdb_query($link, "CREATE TABLE myCity LIKE City")) { printf("Error: %s ", maxdb_error($link)); exit; } /* close connection */ maxdb_close($link); ?> The above example will output something similar to: Error: Session not connected SEE ALSO
maxdb_thread_id(3). PHP Documentation Group MAXDB_KILL(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