Added prefix for tables names.
Removed libaudit systems tables from tables chooser.
--- /dev/null
+<?xml version="1.0"?>
+<gtodo>
+ <category title="Personale" place="0"/>
+ <category title="Affari" place="1"/>
+ <category title="Non classificati" place="2"/>
+</gtodo>
--- /dev/null
+<?xml version="1.0"?>
+<anjuta>
+ <plugin name="GBF Project Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaProjectManager"/>
+ </plugin>
+ <plugin name="AutoTools Project Backend"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaProjectBackend"/>
+ <require group="Project"
+ attribute="Supported-Project-Types"
+ value="automake"/>
+ </plugin>
+ <plugin name="Symbol Browser"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaSymbolManager"/>
+ </plugin>
+ <plugin name="Make Build System"
+ url="http://anjuta.org/plugins/"
+ mandatory="yes">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaBuildable"/>
+ <require group="Build"
+ attribute="Supported-Build-Types"
+ value="make"/>
+ </plugin>
+ <plugin name="Task Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaTodo"/>
+ </plugin>
+ <plugin name="Debug Manager"
+ url="http://anjuta.org/plugins/"
+ mandatory="no">
+ <require group="Anjuta Plugin"
+ attribute="Interfaces"
+ value="IAnjutaDebugManager"/>
+ </plugin>
+</anjuta>
<property name="border_width">5</property>
<property name="orientation">vertical</property>
<property name="spacing">5</property>
+ <child>
+ <object class="GtkHBox" id="hbox1">
+ <property name="visible">True</property>
+ <property name="spacing">5</property>
+ <child>
+ <object class="GtkLabel" id="label9">
+ <property name="visible">True</property>
+ <property name="xalign">0</property>
+ <property name="label" translatable="yes">Table name prefix</property>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkEntry" id="entry2">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="invisible_char">●</property>
+ </object>
+ <packing>
+ <property name="position">1</property>
+ </packing>
+ </child>
+ </object>
+ <packing>
+ <property name="expand">False</property>
+ <property name="position">0</property>
+ </packing>
+ </child>
<child>
<placeholder/>
</child>
</object>
<packing>
<property name="expand">False</property>
- <property name="position">1</property>
+ <property name="position">2</property>
</packing>
</child>
</object>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
- <child>
- <placeholder/>
- </child>
<child>
<object class="GtkComboBox" id="combobox1">
<property name="visible">True</property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
+ <child>
+ <placeholder/>
+ </child>
</object>
<packing>
<property name="expand">False</property>
GdaConnection *gdacon;
GdaSqlParser *gdaparser;
+
+ gchar *prefix;
} Commons;
#endif /* __COMMONS_H__ */
GtkWidget *vbx;
GError *error;
+ gchar *cnc;
+
+ gchar *pos;
+
+ cnc = g_strdup (arg1);
+ pos = g_strrstr (cnc, "{prefix}");
+ if (pos != NULL)
+ {
+ cnc = g_strndup (cnc, pos - cnc);
+ commons->prefix = g_strdup (pos + 8);
+ }
+ else
+ {
+ commons->prefix = g_strdup ("");
+ }
+
error = NULL;
- commons->gdacon = gda_connection_open_from_string (NULL, arg1, NULL,
+ commons->gdacon = gda_connection_open_from_string (NULL, cnc, NULL,
GDA_CONNECTION_OPTIONS_NONE,
&error);
if (!commons->gdacon)
gda_init ();
/* inizializzazione commons */
- commons = g_malloc (sizeof (Commons));
+ commons = g_malloc0 (sizeof (Commons));
#ifdef G_OS_WIN32
info = gdaui_login_get_connection_information (GDAUI_LOGIN (priv->wlogin));
cncstring = g_strconcat (info->provider, "://",
- (info->auth_string != NULL ? g_strdup_printf ("%s;", info->auth_string) : ""),
- info->cnc_string, NULL);
+ (info->auth_string != NULL ? g_strdup_printf ("%s;", info->auth_string) : ""),
+ info->cnc_string,
+ "{prefix}", gtk_entry_get_text (GTK_ENTRY (gtk_builder_get_object (priv->commons->gtkbuilder, "entry2"))),
+ NULL);
g_signal_emit (open_audit_ds, klass->opened_signal_id, 0, cncstring);
}
/* PRIVATE */
+static gboolean
+table_is_a_system_table (Table *table, const gchar *table_name)
+{
+ gboolean ret;
+
+ gchar *real_table_name;
+
+ TablePrivate *priv = TABLE_GET_PRIVATE (table);
+
+ real_table_name = g_strstrip (g_strdelimit (g_strdup (table_name), "\"`", ' '));
+
+ ret = g_strcmp0 (real_table_name, g_strdup_printf ("%sdatasources", priv->commons->prefix)) == 0
+ || g_strcmp0 (real_table_name, g_strdup_printf ("%stables", priv->commons->prefix)) == 0
+ || g_strcmp0 (real_table_name, g_strdup_printf ("%sfields", priv->commons->prefix)) == 0
+ || g_strcmp0 (real_table_name, g_strdup_printf ("%sactions", priv->commons->prefix)) == 0
+ || g_strcmp0 (real_table_name, g_strdup_printf ("%svalues", priv->commons->prefix)) == 0;
+ g_free (real_table_name);
+
+ return ret;
+}
+
static void
table_load_db_tables (Table *table)
{
guint rows;
guint row;
+ gchar *table_name;
+
TablePrivate *priv = TABLE_GET_PRIVATE (table);
error = NULL;
rows = gda_data_model_get_n_rows (dm);
for (row = 0; row < rows; row++)
{
- gtk_list_store_append (GTK_LIST_STORE (model), &iter);
- gtk_list_store_set (GTK_LIST_STORE (model), &iter,
- 0, gda_value_stringify (gda_data_model_get_value_at (dm, 0, row, NULL)),
- -1);
+ table_name = gda_value_stringify (gda_data_model_get_value_at (dm, 0, row, NULL));
+
+ if (!table_is_a_system_table (table, table_name))
+ {
+ gtk_list_store_append (GTK_LIST_STORE (model), &iter);
+ gtk_list_store_set (GTK_LIST_STORE (model), &iter,
+ 0, table_name,
+ -1);
+ }
}
}
}