GRASS Programmer's Manual  6.4.2(2012)
transaction.c
Go to the documentation of this file.
00001 #include <grass/dbmi.h>
00002 
00003 /* Implemented only in some drivers */
00004 int db__driver_begin_transaction(void)
00005 {
00006     G_debug(2, "Begin transaction");
00007     return DB_OK;
00008 }
00009 
00010 /* Implemented only in some drivers */
00011 int db__driver_commit_transaction(void)
00012 {
00013     G_debug(2, "Commit transaction");
00014     return DB_OK;
00015 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines