<?xml version="1.0"?>
-<dock-layout><layout name="__default__"><dock name="__dock_1" floating="no" width="-1" height="-1" floatx="0" floaty="0"><paned orientation="horizontal" locked="no" position="1019"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaDocumentManager" orientation="vertical" locked="no"/><item name="AnjutaDevhelpDisplay" orientation="vertical" locked="yes"/><item name="AnjutaTerminal" orientation="vertical" locked="yes"/></notebook><paned orientation="vertical" locked="no" position="289"><notebook orientation="vertical" locked="no" page="1"><item name="AnjutaFileManager" orientation="vertical" locked="no"/><item name="AnjutaProjectManager" orientation="vertical" locked="no"/></notebook><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaSymbolDB" orientation="vertical" locked="no"/><item name="AnjutaDevhelpIndex" orientation="vertical" locked="no"/></notebook></paned></paned></dock></layout></dock-layout>
+<dock-layout><layout name="__default__"><dock name="__dock_1" floating="no" width="-1" height="-1" floatx="0" floaty="0"><paned orientation="horizontal" locked="no" position="1019"><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaDocumentManager" orientation="vertical" locked="no"/><item name="AnjutaDevhelpDisplay" orientation="vertical" locked="yes"/><item name="AnjutaTerminal" orientation="vertical" locked="yes"/></notebook><paned orientation="vertical" locked="no" position="286"><notebook orientation="vertical" locked="no" page="1"><item name="AnjutaFileManager" orientation="vertical" locked="no"/><item name="AnjutaProjectManager" orientation="vertical" locked="no"/></notebook><notebook orientation="vertical" locked="no" page="0"><item name="AnjutaSymbolDB" orientation="vertical" locked="no"/><item name="AnjutaDevhelpIndex" orientation="vertical" locked="no"/></notebook></paned></paned></dock></layout></dock-layout>
return ret;
}
+/**
+ * gdaex_data_model_columns_to_hashtable_from_sql:
+ * @gdaex: a #GdaEx object.
+ * @sql: an SQL statement.
+ *
+ * Returns: a #GHashTable with keys as the columns names from @sql,
+ * and values as columns numbers.
+ */
+GHashTable
+*gdaex_data_model_columns_to_hashtable_from_sql (GdaEx *gdaex, gchar *sql)
+{
+ GHashTable *ret;
+ GdaDataModel *dm;
+
+ g_return_val_if_fail (IS_GDAEX (gdaex), NULL);
+
+ dm = gdaex_query (gdaex, sql);
+ ret = gdaex_data_model_columns_to_hashtable (dm);
+
+ return ret;
+}
+
+/**
+ * gdaex_data_modelrow_to_hashtable_from_sql:
+ * @gdaex: a #GdaEx object.
+ * @sql: an SQL statement.
+ * @row: row number.
+ *
+ * Returns: a #GHashTable with keys as the columns names from @sql,
+ * and values as #GValue.
+ */
+GHashTable
+*gdaex_data_model_row_to_hashtable_from_sql (GdaEx *gdaex, gchar *sql, guint row)
+{
+ GHashTable *ret;
+ GdaDataModel *dm;
+
+ g_return_val_if_fail (IS_GDAEX (gdaex), NULL);
+ g_return_val_if_fail (sql != NULL, NULL);
+
+ dm = gdaex_query (gdaex, sql);
+ ret = gdaex_data_model_row_to_hashtable (dm, row);
+
+ return ret;
+}
+
/**
* gdaex_data_model_to_gtkliststore:
* @dm: a #GdaDataModel object.
GHashTable *gdaex_data_model_columns_to_hashtable (GdaDataModel *dm);
GHashTable *gdaex_data_model_row_to_hashtable (GdaDataModel *dm, guint row);
+GHashTable *gdaex_data_model_columns_to_hashtable_from_sql (GdaEx *gdaex, gchar *sql);
+GHashTable *gdaex_data_model_row_to_hashtable_from_sql (GdaEx *gdaex, gchar *sql, guint row);
+
GtkListStore *gdaex_data_model_to_gtkliststore (GdaDataModel *dm,
gboolean only_schema);