1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
|
/*
* $Id: dbase.c,v 1.4 2005/09/13 18:05:03 klaus_darilion Exp $
*
* POSTGRES module, portions of this code were templated using
* the mysql module, thus it's similarity.
*
* Copyright (C) 2003 August.Net Services, LLC
*
* This file is part of openser, a free SIP server.
*
* openser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* openser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ---
*
* History
* -------
* 2003-04-06 initial code written (Greg Fausak/Andy Fullford)
*
*/
#define MAXCOLUMNS 512
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "../../dprint.h"
#include "../../mem/mem.h"
#include "db_utils.h"
#include "defs.h"
#include "dbase.h"
#include "con_postgres.h"
#include "aug_std.h"
long getpid();
static char sql_buf[SQL_BUF_LEN];
static int submit_query(db_con_t* _h, const char* _s);
static int connect_db(db_con_t* _h);
static int disconnect_db(db_con_t* _h);
static int free_query(db_con_t* _h);
/*
** connect_db Connect to a database
**
** Arguments :
** db_con_t * as previously supplied by db_init()
**
** Returns :
** 0 upon success
** negative number upon failure
**
** Notes :
** If currently connected, a disconnect is done first
** if this process did the connection, otherwise the
** disconnect is not done before the new connect.
** This is important, as the process that owns the connection
** should clean up after itself.
*/
static int connect_db(db_con_t* _h)
{
char* user, *password, *host, *port, *database;
char urlbuf[SQLURL_LEN];
if(! _h)
{
PLOG("connect_db", "must pass db_con_t!");
return(-1);
}
if(CON_CONNECTED(_h))
{
DLOG("connect_db", "disconnect first!");
disconnect_db(_h);
}
if (!CON_SQLURL(_h)) {
PLOG("connect_db","FATAL ERROR: no sql url!");
return(-1);
}
/*
** CON_CONNECTED(_h) is now 0, set by disconnect_db()
*/
/*
** Note :
** Make a scratch pad copy of given SQL URL in urlbuf and work on it.
** all memory allocated to this connection is rooted
** from this.
** This is an important concept.
** as long as you always allocate memory using the function:
** mem = aug_alloc(size, CON_SQLURL(_h)) or
** where size is the amount of memory, then in the future
** when CON_SQLURL(_h) is freed (in the function disconnect_db())
** all other memory allocated in this manner is freed.
** this will keep memory leaks from happening.
*/
snprintf(urlbuf,SQLURL_LEN,"%s",CON_SQLURL(_h));
/*
** get the connection parameters parsed from the db_url string
** it looks like: postgres://username:userpass@dbhost:dbport/dbname
** username/userpass : name and password for the database
** dbhost : the host name or ip address hosting the database
** dbport : the port to connect to database on
** dbname : the name of the database
*/
if(parse_sql_url(urlbuf,
&user,&password,&host,&port,&database) < 0)
{
char buf[SQL_BUF_LEN];
snprintf(buf, SQL_BUF_LEN, "Error while parsing %s", CON_SQLURL(_h));
PLOG("connect_db", buf);
return -3;
}
/*
** finally, actually connect to the database
*/
CON_CONNECTION(_h) =
PQsetdbLogin(host,port,NULL,NULL,database,user, password);
if(CON_CONNECTION(_h) == 0
|| PQstatus(CON_CONNECTION(_h)) != CONNECTION_OK)
{
PLOG("connect_db", PQerrorMessage(CON_CONNECTION(_h)));
PQfinish(CON_CONNECTION(_h));
return -4;
}
CON_PID(_h) = getpid();
/*
** all is well, database was connected, we can now submit_query's
*/
CON_CONNECTED(_h) = 1;
return 0;
}
/*
** disconnect_db Disconnect a database
**
** Arguments :
** db_con_t * as previously supplied by db_init()
**
** Returns :
** 0 upon success
** negative number upon failure
**
** Notes :
** All memory associated with CON_SQLURL is freed.
**
*/
static int disconnect_db(db_con_t* _h)
{
if(! _h)
{
DLOG("disconnect_db", "null db_con_t, ignored!\n");
return(0);
}
/*
** ignore if there is no current connection
*/
if(CON_CONNECTED(_h) != 1)
{
DLOG("disconnect_db", "not connected, ignored!\n");
return 0;
}
/*
** make sure we are trying to close a connection that was opened
** by our process ID
*/
if(CON_PID(_h) == getpid())
{
PQfinish(CON_CONNECTION(_h));
CON_CONNECTED(_h) = 0;
}
else
{
DLOG("disconnect_db",
"attempt to release connection not owned, ignored!\n");
}
return 0;
}
/*
** db_init initialize database for future queries
**
** Arguments :
** char *_sqlurl; sql database to open
**
** Returns :
** db_con_t * NULL upon error
** db_con_t * if successful
**
** Notes :
** db_init must be called prior to any database
** functions.
*/
db_con_t *db_init(const char* _sqlurl)
{
db_con_t* res;
DLOG("db_init", "entry");
if (strlen(_sqlurl)>(SQLURL_LEN-1))
{
PLOG("db_init","ERROR: sql url too long");
return ((db_con_t *) 0);
}
/*
** this is the root memory for this database connection.
*/
res = aug_alloc(sizeof(db_con_t), 0);
memset(res, 0, sizeof(db_con_t));
res->tail = (unsigned long)aug_alloc
(sizeof(struct con_postgres), (char*)res);
memset((struct con_postgres*)res->tail, 0, sizeof(struct con_postgres));
CON_SQLURL(res)=aug_strdup((char*)_sqlurl,(char *)res);
if (connect_db(res) < 0)
{
PLOG("db_init", "Error while trying to open database, FATAL\n");
aug_free(res);
return((db_con_t *) 0);
}
return res;
}
/*
** db_close last function to call when db is no longer needed
**
** Arguments :
** db_con_t * the connection to shut down, as supplied by db_init()
**
** Returns :
** (void)
**
** Notes :
** All memory and resources are freed.
*/
void db_close(db_con_t* _h)
{
DLOG("db_close", "entry");
if(! _h)
{
PLOG("db_close", "no handle passed, ignored");
return;
}
disconnect_db(_h);
/*
** free sql url memory if it exists
*/
if(CON_SQLURL(_h))
{
aug_free(CON_SQLURL(_h));
CON_SQLURL(_h) = (char *) 0;
}
aug_free(_h);
}
/*
** submit_query run a query
**
** Arguments :
** db_con_t * as previously supplied by db_init()
** char *_s the text query to run
**
** Returns :
** 0 upon success
** negative number upon failure
*/
static int submit_query(db_con_t* _h, const char* _s)
{
int rv;
/*
** this bit of nonsense in case our connection get screwed up
*/
switch(rv = PQstatus(CON_CONNECTION(_h)))
{
case CONNECTION_OK: break;
case CONNECTION_BAD:
PLOG("submit_query", "connection reset");
PQreset(CON_CONNECTION(_h));
break;
}
/*
** free any previous query that is laying about
*/
if(CON_RESULT(_h))
{
free_query(_h);
}
/*
** exec the query
*/
CON_RESULT(_h) = PQexec(CON_CONNECTION(_h), _s);
rv = 0;
if(PQresultStatus(CON_RESULT(_h)) == 0)
{
PLOG("submit_query", "initial failure, FATAL");
/*
** terrible error??
*/
rv = -3;
}
else
{
/*
** the query ran, get the status
*/
switch(PQresultStatus(CON_RESULT(_h)))
{
case PGRES_EMPTY_QUERY: rv = -9; break;
case PGRES_COMMAND_OK: rv = 0; break;
case PGRES_TUPLES_OK: rv = 0; break;
case PGRES_COPY_OUT: rv = -4; break;
case PGRES_COPY_IN: rv = -5; break;
case PGRES_BAD_RESPONSE: rv = -6; break;
case PGRES_NONFATAL_ERROR: rv = -7; break;
case PGRES_FATAL_ERROR: rv = -8; break;
default: rv = -2; break;
}
}
if(rv < 0)
{
/*
** log the error
*/
char buf[SQL_BUF_LEN];
snprintf(buf, SQL_BUF_LEN, "query '%s', result '%s'\n",
_s, PQerrorMessage(CON_CONNECTION(_h)));
PLOG("submit_query", buf);
}
return(rv);
}
/*
** free_query clear the db channel and clear any old query result status
**
** Arguments :
** db_con_t * as previously supplied by db_init()
**
** Returns :
** 0 upon success
** negative number upon failure
*/
static int free_query(db_con_t* _h)
{
if(CON_RESULT(_h))
{
PQclear(CON_RESULT(_h));
CON_RESULT(_h) = 0;
}
return 0;
}
/*
** db_free_query free the query and free the result memory
**
** Arguments :
** db_con_t * as previously supplied by db_init()
** db_res_t * the result of a query
**
** Returns :
** 0 upon success
** negative number upon failure
*/
int db_free_query(db_con_t* _h, db_res_t* _r)
{
free_query(_h);
free_result(_r);
return 0;
}
/*
** begin_transaction begin transaction
**
** Arguments :
** db_con_t * as previously supplied by db_init()
** char * this is just in case an error message
** is printed, we will know which query
** was going to be run, giving us a code debug hint
**
** Returns :
** 0 upon success
** negative number upon failure
**
** Notes :
** This function may be called with a messed up communication
** channel. Therefore, alot of this function is dealing with
** that. Wen the layering gets corrected later this stuff
** should continue to work correctly, it will just be
** way to defensive.
*/
static int begin_transaction(db_con_t * _h, char *_s)
{
PGresult *mr;
int rv;
/*
** Note:
** The upper layers of code may attempt a transaction
** before opening or having a valid connection to the
** database. We try to sense this, and open the database
** if we have the sqlurl in the _h structure. Otherwise,
** all we can do is return an error.
*/
if(_h)
{
if(CON_CONNECTED(_h))
{
mr = PQexec(CON_CONNECTION(_h), "BEGIN");
if(!mr || PQresultStatus(mr) != PGRES_COMMAND_OK)
{
/*
** We get here if the connection to the
** db is corrupt, which can happen a few
** different ways, but all of them are
** related to the parent process forking,
** or being forked.
*/
PLOG("begin_transaction","corrupt connection");
CON_CONNECTED(_h) = 0;
}
else
{
/*
** this is the normal way out.
** the transaction ran fine.
*/
PQclear(mr);
return(0);
}
}
else
{
DLOG("begin_transaction", "called before db_init");
}
/*
** if we get here we have a corrupt db connection,
** but we probably have a valid db_con_t structure.
** attempt to open the db.
*/
if((rv = connect_db(_h)) != 0)
{
/*
** our attempt to fix the connection failed
*/
char buf[SQL_BUF_LEN];
snprintf(buf, SQL_BUF_LEN, "no connection, FATAL %d!", rv);
PLOG("begin_transaction",buf);
return(rv);
}
PLOG("db_connect","successfully reconnected");
}
else
{
PLOG("begin_transaction","must call db_init first!");
return(-1);
}
/*
** we get here if the database connection was corrupt,
** i didn't want to use recursion ...
*/
mr = PQexec(CON_CONNECTION(_h), "BEGIN");
if(!mr || PQresultStatus(mr) != PGRES_COMMAND_OK)
{
char buf[SQL_BUF_LEN];
snprintf(buf, SQL_BUF_LEN, "FATAL %s, '%s'!\n",
PQerrorMessage(CON_CONNECTION(_h)), _s);
PLOG("begin_transaction", buf);
return(-1);
}
DLOG("begin_transaction", "db channel reset successful");
PQclear(mr);
return(0);
}
/*
** commit_transaction any begin_transaction must be terminated with this
**
** Arguments :
** db_con_t * as previously supplied by db_init()
**
** Returns :
** 0 upon success
** negative number upon failure
*/
static int commit_transaction(db_con_t * _h)
{
PGresult *mr;
mr = PQexec(CON_CONNECTION(_h), "COMMIT");
if(!mr || PQresultStatus(mr) != PGRES_COMMAND_OK)
{
PLOG("commit_transaction", "error");
return -1;
}
PQclear(mr);
return(0);
}
/*
** rollback_transaction: any failed begin_transaction must be terminated with this
**
** Arguments :
** db_con_t * as previously supplied by db_init()
**
** Returns :
** 0 upon success
** negative number upon failure
*/
static int rollback_transaction(db_con_t * _h)
{
PGresult *mr;
mr = PQexec(CON_CONNECTION(_h), "ROLLBACK");
if(!mr || PQresultStatus(mr) != PGRES_COMMAND_OK)
{
PLOG("rollback_transaction", "error");
return -1;
}
PQclear(mr);
return(0);
}
/*
* Print list of columns separated by comma
*/
static int print_columns(char* _b, int _l, db_key_t* _c, int _n)
{
int i;
int res = 0;
for(i = 0; i < _n; i++) {
if (i == (_n - 1)) {
res += snprintf(_b + res, _l - res, "%s ", _c[i]);
} else {
res += snprintf(_b + res, _l - res, "%s,", _c[i]);
}
}
return res;
}
/*
* Print list of values separated by comma
*/
static int print_values(char* _b, int _l, db_val_t* _v, int _n)
{
int i, res = 0, l;
for(i = 0; i < _n; i++) {
l = _l - res;
/* LOG(L_ERR, "%d sizes l = _l - res %d = %d - %d\n", i, l,_l,res);
*/
if (val2str(_v + i, _b + res, &l) < 0) {
LOG(L_ERR,
"print_values(): Error converting value to string\n");
return 0;
}
res += l;
if (i != (_n - 1)) {
*(_b + res) = ',';
res++;
}
}
return res;
}
/*
* Print where clause of SQL statement
*/
static int print_where(char* _b, int _l, db_key_t* _k,
db_op_t* _o, db_val_t* _v, int _n)
{
int i;
int res = 0;
int l;
for(i = 0; i < _n; i++) {
if (_o) {
res += snprintf(_b + res, _l - res, "%s%s",
_k[i], _o[i]);
} else {
res += snprintf(_b + res, _l - res, "%s=", _k[i]);
}
l = _l - res;
val2str(&(_v[i]), _b + res, &l);
res += l;
if (i != (_n - 1)) {
res += snprintf(_b + res, _l - res, " AND ");
}
}
return res;
}
/*
* Print set clause of update SQL statement
*/
static int print_set(char* _b, int _l, db_key_t* _k,
db_val_t* _v, int _n)
{
int i;
int res = 0;
int l;
for(i = 0; i < _n; i++) {
res += snprintf(_b + res, _l - res, "%s=", _k[i]);
l = _l - res;
val2str(&(_v[i]), _b + res, &l);
res += l;
if (i != (_n - 1)) {
if ((_l - res) >= 1) {
*(_b + res++) = ',';
}
}
}
return res;
}
/*
* Query table for specified rows
* _h: structure representing database connection
* _k: key names
* _op: operators
* _v: values of the keys that must match
* _c: column names to return
* _n: nmber of key=values pairs to compare
* _nc: number of columns to return
* _o: order by the specified column
*/
int db_query(db_con_t* _h, db_key_t* _k, db_op_t* _op,
db_val_t* _v, db_key_t* _c, int _n, int _nc,
db_key_t _o, db_res_t** _r)
{
int off, rv;
if (!_c) {
off = snprintf(sql_buf, SQL_BUF_LEN,
"select * from %s ", CON_TABLE(_h));
} else {
off = snprintf(sql_buf, SQL_BUF_LEN, "select ");
off += print_columns(sql_buf + off, SQL_BUF_LEN - off, _c, _nc);
off += snprintf(sql_buf + off, SQL_BUF_LEN - off,
"from %s ", CON_TABLE(_h));
}
if (_n) {
off += snprintf(sql_buf + off, SQL_BUF_LEN - off, "where ");
off += print_where(sql_buf + off, SQL_BUF_LEN - off,
_k, _op, _v, _n);
}
if (_o) {
off += snprintf(sql_buf + off, SQL_BUF_LEN - off,
"order by %s", _o);
}
if(begin_transaction(_h, sql_buf)) return(-1);
if (submit_query(_h, sql_buf) < 0) {
LOG(L_ERR, "db_query(): Error while submitting query, executing ROLLBACK\n");
rollback_transaction(_h);
return -2;
}
rv = get_result(_h, _r);
free_query(_h);
commit_transaction(_h);
return(rv);
}
/*
* Execute a raw SQL query
*/
int db_raw_query(db_con_t* _h, char* _s, db_res_t** _r)
{
int rv;
if(begin_transaction(_h, sql_buf)) return(-1);
if (submit_query(_h, _s) < 0) {
LOG(L_ERR, "db_raw_query(): Error while submitting query, executing ROLLBACK\n");
rollback_transaction(_h);
return -2;
}
rv = get_result(_h, _r);
free_query(_h);
commit_transaction(_h);
return(rv);
}
/*
* Retrieve result set
*/
int get_result(db_con_t* _h, db_res_t** _r)
{
*_r = new_result_pg(CON_SQLURL(_h));
if (!CON_RESULT(_h)) {
LOG(L_ERR, "get_result(): error");
free_result(*_r);
*_r = 0;
return -3;
}
if (convert_result(_h, *_r) < 0) {
LOG(L_ERR, "get_result(): Error while converting result\n");
free_result(*_r);
*_r = 0;
return -4;
}
return 0;
}
/*
* Insert a row into specified table
* _h: structure representing database connection
* _k: key names
* _v: values of the keys
* _n: number of key=value pairs
*/
int db_insert(db_con_t* _h, db_key_t* _k, db_val_t* _v, int _n)
{
int off;
off = snprintf(sql_buf, SQL_BUF_LEN, "insert into %s (", CON_TABLE(_h));
off += print_columns(sql_buf + off, SQL_BUF_LEN - off, _k, _n);
off += snprintf(sql_buf + off, SQL_BUF_LEN - off, ") values (");
off += print_values(sql_buf + off, SQL_BUF_LEN - off, _v, _n);
*(sql_buf + off++) = ')';
*(sql_buf + off) = '\0';
if(begin_transaction(_h, sql_buf)) return(-1);
if (submit_query(_h, sql_buf) < 0) {
LOG(L_ERR, "db_insert(): Error while inserting, executing ROLLBACK\n");
rollback_transaction(_h);
return -2;
}
free_query(_h);
commit_transaction(_h);
return(0);
}
/*
* Delete a row from the specified table
* _h: structure representing database connection
* _k: key names
* _o: operators
* _v: values of the keys that must match
* _n: number of key=value pairs
*/
int db_delete(db_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _v, int _n)
{
int off;
off = snprintf(sql_buf, SQL_BUF_LEN, "delete from %s", CON_TABLE(_h));
if (_n) {
off += snprintf(sql_buf + off, SQL_BUF_LEN - off, " where ");
off += print_where(sql_buf + off, SQL_BUF_LEN - off, _k,
_o, _v, _n);
}
if(begin_transaction(_h, sql_buf)) return(-1);
if (submit_query(_h, sql_buf) < 0) {
LOG(L_ERR, "db_delete(): Error while deleting, executing ROLLBACK\n");
rollback_transaction(_h);
return -2;
}
free_query(_h);
commit_transaction(_h);
return(0);
}
/*
* Update some rows in the specified table
* _h: structure representing database connection
* _k: key names
* _o: operators
* _v: values of the keys that must match
* _uk: updated columns
* _uv: updated values of the columns
* _n: number of key=value pairs
* _un: number of columns to update
*/
int db_update(db_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _v,
db_key_t* _uk, db_val_t* _uv, int _n, int _un)
{
int off;
off = snprintf(sql_buf, SQL_BUF_LEN, "update %s set ", CON_TABLE(_h));
off += print_set(sql_buf + off, SQL_BUF_LEN - off, _uk, _uv, _un);
if (_n) {
off += snprintf(sql_buf + off, SQL_BUF_LEN - off, " where ");
off += print_where(sql_buf + off, SQL_BUF_LEN - off, _k,
_o, _v, _n);
*(sql_buf + off) = '\0';
}
if(begin_transaction(_h, sql_buf)) return(-1);
if (submit_query(_h, sql_buf) < 0) {
LOG(L_ERR, "db_update(): Error while updating, executing ROLLBACK\n");
rollback_transaction(_h);
return -2;
}
free_query(_h);
commit_transaction(_h);
return(0);
}
|