Copyright notes at top op every source file
[fa-stable.git] / includes / db / sql_functions.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
11 ***********************************************************************/
12 //-------------------------------------------------------------------
13
14 function begin_transaction()
15 {
16         db_query("BEGIN", "could not start a transaction");
17 }
18
19 function commit_transaction()
20 {
21         db_query("COMMIT", "could not commit a transaction");
22 }
23
24 function cancel_transaction()
25 {
26         db_query("ROLLBACK", "could not cancel a transaction"); 
27 }
28
29 ?>