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

search for in the

maxdb_bind_param> <maxdb_affected_rows
Last updated: Sat, 24 Mar 2007

view this page in

maxdb_autocommit,

(PECL maxdb:1.0-7.6.00.34)

maxdb_autocommit, maxdb->auto_commit — Turns on or off auto-commiting database modifications

Description

Procedural style:

bool maxdb_autocommit ( resource $link, bool $mode )

Object oriented style (method)

class maxdb {
bool auto_commit ( bool $mode )
}

maxdb_autocommit() is used to turn on or off auto-commit mode on queries for the database connection represented by the link resource.

Return values

Vrací TRUE při úspěchu, FALSE při selhání.

See also

maxdb_commit(), maxdb_rollback().

Example

Příklad 926. Object oriented style

<?php
$maxdb
= new maxdb("localhost", "MONA", "RED", "DEMODB");

if (
maxdb_connect_errno()) {
  
printf("Connect failed: %s\n", maxdb_connect_error());
   exit();
}

/* turn autocommit on */
$maxdb->autocommit(TRUE);

/* close connection */
$maxdb->close();
?>

Příklad 927. Procedural style

<?php
$link
= maxdb_connect("localhost", "MONA", "RED", "DEMODB");

if (!
$link) {
  
printf("Can't connect to localhost. Error: %s\n", maxdb_connect_error());
   exit();
}

/* turn autocommit on */
maxdb_autocommit($link, TRUE);

/* close connection */
maxdb_close($link);
?>

The above examples would produce no output.



add a note add a note User Contributed Notes
maxdb_autocommit
There are no user contributed notes for this page.

maxdb_bind_param> <maxdb_affected_rows
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites