GNOME Bugzilla – Bug 691099
MySQL: BLOB/BINARY support not implemented
Last modified: 2018-09-21 13:47:51 UTC
The MySQL provider does not seem to allow the setting or getting of binary data, though it works for the PostgreSQL and SQLite backends. This seems to be the problem code in gda-mysql-provider.c: static GdaDataHandler * gda_mysql_provider_get_data_handler (GdaServerProvider *provider, GdaConnection *cnc, GType type, const gchar *dbms_type) { ... else if ((type == GDA_TYPE_BINARY) || (type == GDA_TYPE_BLOB)) { TO_IMPLEMENT; /* define data handlers for these types */ dh = NULL; }
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/libgda/issues/71.