}
/**
- * gdaex_new_from_dsn:
+ * gdaex_new:
+ *
+ * Returns: the newly created #GdaEx.
+ */
+GdaEx
+*gdaex_new ()
+{
+ return GDAEX (g_object_new (gdaex_get_type (), NULL));
+}
+
+/**
+ * gdaex_set_dsn:
* @dsn: GDA data source name to connect to.
* @username: user name to use to connect.
* @password: password for @username.
* If @username and @password are both NULL or empty, it will be used those
* defined into datasource.
*
- * Returns: the newly created #GdaEx.
+ * Returns: @TRUE on newly created #GdaEx.
*/
-GdaEx
-*gdaex_new_from_dsn (const gchar *dsn, const gchar *username, const gchar *password)
+gboolean
+gdaex_set_dsn (GdaEx *gdaex,
+ const gchar *dsn,
+ const gchar *username,
+ const gchar *password)
{
- GdaEx *gdaex;
GdaExPrivate *priv;
gchar *new_user;
gchar *new_pwd;
GError *error;
+ g_return_val_if_fail (IS_GDAEX (gdaex), FALSE);
+
if (dsn == NULL || strcmp (g_strstrip (g_strdup (dsn)), "") == 0)
{
/* TO DO */
g_warning (_("Datasource cannot be empty."));
- return NULL;
- }
-
- gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
- if (gdaex == NULL)
- {
- /* TO DO */
- g_warning (_("Unable to create GdaEx object."));
- return NULL;
+ return FALSE;
}
priv = GDAEX_GET_PRIVATE (gdaex);
{
g_warning (_("Error creating database connection: %s"),
error->message != NULL ? error->message : _("no details"));
- return NULL;
+ return FALSE;
}
gdaex_create_connection_parser (gdaex);
- return gdaex;
+ return TRUE;
}
/**
- * gdaex_new_from_string:
+ * gdaex_set:gda_connection:
* @cnc_string: the connection string.
*
- * Returns: the newly created #GdaEx.
+ * Set connection string.
+ *
+ * Returns: the @TRUE on newly created #GdaEx.
*/
-GdaEx
-*gdaex_new_from_string (const gchar *cnc_string)
+gboolean
+gdaex_set_cnc_string (GdaEx *gdaex,
+ const gchar *cnc_string)
{
GError *error;
- GdaEx *gdaex;
GdaExPrivate *priv;
+ g_return_val_if_fail (IS_GDAEX (gdaex), FALSE);
+
if (cnc_string == NULL || strcmp (g_strstrip (g_strdup (cnc_string)), "") == 0)
{
/* TO DO */
g_warning (_("cnc_string must not be empty."));
- return NULL;
- }
-
- gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
- if (gdaex == NULL)
- {
- /* TO DO */
- g_warning (_("Unable to create GdaEx object."));
- return NULL;
+ return FALSE;
}
priv = GDAEX_GET_PRIVATE (gdaex);
{
g_warning (_("Error creating database connection: %s"),
error->message != NULL ? error->message : _("no details."));
- return NULL;
+ return FALSE;
}
gdaex_create_connection_parser (gdaex);
+ return TRUE;
+}
+
+/**
+ * gdaex_set:gda_connection:
+ * @conn: a #GdaConnection.
+ *
+ * Set #GdaConnection.
+ *
+ * Returns: the @TRUE on newly created #GdaEx.
+ */
+gboolean
+gdaex_set_gda_connection (GdaEx *gdaex,
+ GdaConnection *conn)
+{
+ GdaExPrivate *priv;
+
+ g_return_val_if_fail (IS_GDAEX (gdaex), FALSE);
+ g_return_val_if_fail (GDA_IS_CONNECTION (conn), FALSE);
+
+ priv = GDAEX_GET_PRIVATE (gdaex);
+
+ priv->gda_conn = conn;
+
+ gdaex_create_connection_parser (gdaex);
+
+ return TRUE;
+}
+
+/**
+ * gdaex_new_from_dsn:
+ * @dsn: GDA data source name to connect to.
+ * @username: user name to use to connect.
+ * @password: password for @username.
+ *
+ * If @username and @password are both NULL or empty, it will be used those
+ * defined into datasource.
+ *
+ * Returns: the newly created #GdaEx.
+ */
+GdaEx
+*gdaex_new_from_dsn (const gchar *dsn, const gchar *username, const gchar *password)
+{
+ GdaEx *gdaex;
+
+ gdaex = gdaex_new ();
+ if (gdaex == NULL)
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ return NULL;
+ }
+
+ if (!gdaex_set_dsn (gdaex, dsn, username, password))
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ g_clear_object (&gdaex);
+ }
+
+ return gdaex;
+}
+
+/**
+ * gdaex_new_from_string:
+ * @cnc_string: the connection string.
+ *
+ * Returns: the newly created #GdaEx.
+ */
+GdaEx
+*gdaex_new_from_string (const gchar *cnc_string)
+{
+ GdaEx *gdaex;
+
+ gdaex = gdaex_new ();
+ if (gdaex == NULL)
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ return NULL;
+ }
+
+ if (!gdaex_set_cnc_string (gdaex, cnc_string))
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ g_clear_object (&gdaex);
+ }
+
return gdaex;
}
*gdaex_new_from_connection (GdaConnection *conn)
{
GdaEx *gdaex;
- GdaExPrivate *priv;
-
- g_return_val_if_fail (GDA_IS_CONNECTION (conn), NULL);
-
- gdaex = GDAEX (g_object_new (gdaex_get_type (), NULL));
-
- priv = GDAEX_GET_PRIVATE (gdaex);
- priv->gda_conn = conn;
+ gdaex = gdaex_new ();
+ if (gdaex == NULL)
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ return NULL;
+ }
- gdaex_create_connection_parser (gdaex);
+ if (!gdaex_set_gda_connection (gdaex, conn))
+ {
+ /* TO DO */
+ g_warning (_("Unable to create GdaEx object."));
+ g_clear_object (&gdaex);
+ }
return gdaex;
}