From ef7d75713f039ab2472a5ffcfb1ba437d03b356e Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 28 Jul 2015 17:03:42 +0200 Subject: [PATCH] Added GdaEx::get_sql_parser. --- src/gdaex.c | 30 +++++++++++++++++++++++------- src/gdaex.h | 9 +++++---- 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/src/gdaex.c b/src/gdaex.c index 477b2c1..1c7ed26 100644 --- a/src/gdaex.c +++ b/src/gdaex.c @@ -4,17 +4,17 @@ * Copyright (C) 2005-2014 Andrea Zagli * * This file is part of libgdaex. - * + * * libgdaex 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. - * + * * libgdaex 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 libgdaex; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA @@ -40,7 +40,7 @@ static guint debug; static gchar *log_file; -static GOptionEntry entries[] = +static GOptionEntry entries[] = { { "gdaex-debug-level", 0, 0, G_OPTION_ARG_INT, &debug, "Sets the debug level", NULL }, { "gdaex-log-file", 0, 0, G_OPTION_ARG_FILENAME, &log_file, "Path to file where to write debug info (or stdout or stderr)", NULL }, @@ -428,7 +428,7 @@ gdaex_post_parse_options (GOptionContext *context, g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION, gdaex_log_handler, user_data); } - } + } } return TRUE; @@ -487,6 +487,22 @@ const gchar return gda_server_provider_get_name (gda_connection_get_provider (priv->gda_conn)); } +/** + * gdaex_get_sql_parser: + * @gdaex: a #GdaEx object. + * + * Returns: the sql parser associated to the #GdaEx. + */ +const GdaSqlParser +*gdaex_get_sql_parser (GdaEx *gdaex) +{ + g_return_val_if_fail (IS_GDAEX (gdaex), NULL); + + GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex); + + return priv->gda_parser; +} + /** * gdaex_get_tables_name_prefix: * @gdaex: a #GdaEx object. @@ -1297,7 +1313,7 @@ GdaTimestamp else if (gda_value_isa (v, G_TYPE_DATE_TIME)) { GDateTime *gdatetime; - + gdatetime = gdaex_data_model_get_value_gdatetime_at (data_model, row, col); gdatimestamp = g_malloc0 (sizeof (GdaTimestamp)); gdatimestamp->year = g_date_time_get_year (gdatetime); @@ -2111,7 +2127,7 @@ GdaTimestamp else if (gda_value_isa (v, G_TYPE_DATE_TIME)) { GDateTime *gdatetime; - + gdatetime = gdaex_data_model_iter_get_value_gdatetime_at (iter, col); gdatimestamp = g_malloc0 (sizeof (GdaTimestamp)); gdatimestamp->year = g_date_time_get_year (gdatetime); diff --git a/src/gdaex.h b/src/gdaex.h index d5174c4..7f763fa 100644 --- a/src/gdaex.h +++ b/src/gdaex.h @@ -4,21 +4,21 @@ * Copyright (C) 2005-2014 Andrea Zagli * * This file is part of libgdaex. - * + * * libgdaex 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. - * + * * libgdaex 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 libgdaex; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * + * */ #include @@ -73,6 +73,7 @@ GOptionGroup *gdaex_get_option_group (GdaEx *gdaex); const GdaConnection *gdaex_get_gdaconnection (GdaEx *gdaex); const gchar *gdaex_get_provider (GdaEx *gdaex); +const GdaSqlParser *gdaex_get_sql_parser (GdaEx *gdaex); const gchar *gdaex_get_tables_name_prefix (GdaEx *gdaex); void gdaex_set_tables_name_prefix (GdaEx *gdaex, const gchar *tables_name_prefix); -- 2.49.0