&info->provider,
&username,
&password);
- g_message ("PROVIDER %s CNC %s USER %s PWD %s", info->provider, info->cnc_string, username, password);
+ info->auth_string = g_strdup ("");
+ if (username != NULL && g_strcmp0 (g_strstrip (username), "") != 0)
+ {
+ info->auth_string = g_strdup_printf ("USERNAME=%s", username);
+ }
+ if (password != NULL && g_strcmp0 (g_strstrip (password), "") != 0)
+ {
+ info->auth_string = g_strconcat (info->auth_string,
+ (g_strcmp0 (info->auth_string, "") != 0 ? ";" : ""),
+ g_strdup_printf ("PASSWORD=%s", password),
+ NULL);
+ }
gdaui_login_set_connection_information (GDAUI_LOGIN (priv->wlogin), info);
}
else
gtk_tree_store_clear (priv->tstore_datasources);
- sql = g_strdup_printf ("SELECT id, name, cnc_string FROM datasources WHERE status <> 'D'");
+ sql = g_strdup_printf ("SELECT id, name, cnc_string"
+ " FROM datasources"
+ " WHERE status <> 'D'"
+ " ORDER BY name, cnc_string");
stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL);
dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error);
g_object_unref (stmt);