1 /*
2  * Copyright (C) 2008 - 2011 Vivien Malerba <malerba@gnome-db.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 #ifndef __TEST_CNC_UTIL_H__
19 #define __TEST_CNC_UTIL_H__
20 
21 #include <string.h>
22 #include <glib.h>
main(int argc,char ** argv)23 #include <libgda/libgda.h>
24 
25 GdaConnection *test_cnc_setup_connection (const gchar *provider, const gchar *dbname, GError **error);
26 GdaConnection *test_cnc_open_connection (const gchar *provider, const gchar *dbname, GError **error);
27 gboolean       test_cnc_setup_db_structure (GdaConnection *cnc, const gchar *schema_file, GError **error);
28 gboolean       test_cnc_setup_db_contents (GdaConnection *cnc, const gchar *data_file, GError **error);
29 gboolean       test_cnc_clean_connection (GdaConnection *cnc, GError **error);
30 
31 gboolean       test_cnc_load_data_from_file (GdaConnection *cnc, const gchar *table, const gchar *full_file, GError **error);
32 
33 #endif
34