00001 /********************************************************************\ 00002 * dui-libdbi.h -- driver for the libdbi class of drivers * 00003 * Copyright (C) 2003 Linas Vepstas <linas@linas.org> * 00004 * http://dwi.sourceforge.net * 00005 * * 00006 * This library is free software; you can redistribute it and/or * 00007 * modify it under the terms of the GNU Lesser General Public * 00008 * License as published by the Free Software Foundation; either * 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * * 00011 * This library is distributed in the hope that it will be useful, * 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00014 * GNU Lesser General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU Lesser General Public * 00017 * License along with this program; if not, contact: * 00018 * * 00019 * Free Software Foundation Voice: +1-617-542-5942 * 00020 * 59 Temple Place - Suite 330 Fax: +1-617-542-2652 * 00021 * Boston, MA 02111-1307, USA gnu@gnu.org * 00022 \********************************************************************/ 00033 #ifndef DUI_LIBDBI_H_ 00034 #define DUI_LIBDBI_H_ 00035 00036 #include "dui-initdb.h" 00037 00039 void dui_libdbi_init (void); 00040 00042 DuiDBConnection * dui_libdbi_connection_new (const char * dbname, 00043 const char * username, 00044 const char * authentication_token); 00045 00046 void dui_libdbi_connection_free (DuiDBConnection *conn); 00047 00051 DuiDBRecordSet * dui_libdbi_connection_exec (DuiDBConnection *, 00052 const char * buff); 00053 00055 void dui_libdbi_recordset_release (DuiDBRecordSet *); 00056 00061 int dui_libdbi_recordset_fetch_row (DuiDBRecordSet *); 00062 00066 const char * dui_libdbi_recordset_get_value (DuiDBRecordSet *rs, 00067 const char * fieldname); 00068 00073 #endif /* DUI_LIBDBI_H_ */
1.5.5