g_return_val_if_fail (GDA_IS_CONNECTION (gda_con), FALSE);
parser = gda_connection_create_parser (gda_con);
+ if (parser == NULL)
+ {
+ parser = gda_sql_parser_new ();
+ }
+ if (parser == NULL)
+ {
+ g_warning ("Errore nella creazione del parser sql.");
+ return FALSE;
+ }
error = NULL;
stmt = gda_sql_parser_parse_string (parser, sql, NULL, &error);
}
gda_statement_get_parameters (stmt, &plist, NULL);
+ gda_connection_begin_transaction (gda_con, NULL, 0, NULL);
+
param = gda_set_get_holder (plist, blob_field_name);
value = gda_value_new_blob_from_file (percorso);
error = NULL;
{
g_object_unref (plist);
+ gda_connection_rollback_transaction (gda_con, NULL, NULL);
+
/* TODO error */
g_warning ("Errore nell'impostare il blob: %s.",
error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
if (error != NULL)
{
+ gda_connection_rollback_transaction (gda_con, NULL, NULL);
+
/* TODO error */
g_warning ("Errore nell'esecuzione dello statement di aggiornamento del blob: %s.",
error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
return FALSE;
}
+ gda_connection_commit_transaction (gda_con, NULL, NULL);
}
- gda_value_free (value);
return TRUE;
}