Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP odbc_autocommit() Function.
The built-in odbc_autocommit() function is used to toggle autocommit behaviour.
The built-in odbc_autocommit() function is used to toggle autocommit behaviour.
Syntax
Following below is the syntax to use this function -
mixed odbc_autocommit ( resource $connection_id [, bool $OnOff = false ] )
READ: PHP | ODBC Functions
Parameter Details
Sr.No | Parameters & Discription |
---|---|
1 | connection_id it contains connection id information |
2 | OnOff if onOff is true,auto-commit is enabled,or else it gonna send failure result |
Return Value
This function returns autocommit status as 0 on success or FALSE on failure.
Example
Try out the following example below -
<?php $input_ID = odbc_connect("DSN", "user", "pass"); $Return = odbc_autocommit($input_ID, FALSE); ?>
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the PHP odbc_binmode() Function.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Do follow us on our various social media handles available and also subscribe to our newsletter to get our tutorial posts delivered directly to your emails.
Thanks for reading and bye for now.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Do follow us on our various social media handles available and also subscribe to our newsletter to get our tutorial posts delivered directly to your emails.
Thanks for reading and bye for now.