2005-05-27 Rodrigo Moya Released 1.3.2 2005-05-27 Rodrigo Moya * libsql/Makefile.am: added libgdasql.la as a dependency for sql_parse_test, so that the library gets built first. * providers/sqlite/Makefile.am: fixed to pass make distcheck. * doc/C/Makefile.am: s/AM_CPPFLAGS/GTKDOC_FLAGS. 2005-05-18 Mike Fisk Fixes #304586 * providers/mysql/gda-mysql-recordset.c (fill_gda_value): set correctly unsigned values. 2005-05-17 Bas Driessen * doc/C/Makefile.am: Fix noise autogen.sh by changing the deprecated INCLUDES to AM_CPPFLAGS. 2005-05-14 Vivien Malerba * Changed the GDA_CONNECTION_SCHEMA_PROCEDURES schema: the list of argument types are now separated by commas and not by spaces as some data types contain spaces themselves. * data/config: removed the default system-wide test XML database * data/sales-test.db: new database file for a sample Sales test database * gda-config.c: when the user directory ~/.libgda does not exist, then it's created and a data source is declared for the sample Sales test database * gda-config.[ch]: s/gda_config_copy_data_source_info/gda_data_source_info_copy/ and s/gda_config_free_data_source_info/gda_data_source_info_free/ * gda-config.c: use Gamin or FAM to monitor changes made to either the global config file or the local user config file and notify of changes when appropriate * configure.in: added Gamin or FAM discovery and a --enable-debug option * providers/sqlite/sqlite-src/*: updated to SQLite version 3.2.1 2005-05-13 Mike Kestner * libgda/gda-export.c (gda_export_class_init): fixed typo in "cancelled" signal creation. 2005-05-03 Dru * libgda/gda-column.c: added some comments to references function. 2005-04-30 Jean Bréfort Fixes #302158 * configure.in: fixed MySQL detection. 2005-04-23 Vivien Malerba * libgda/gda-data-model.[ch]: added gda_data_model_dump_as_string() and fixed gda_data_model_dump() * providers/mysql/gda-mysql-provider.c: improved data types schema, and added an extra column for data type synonyms * providers/oracle/gda-oracle-provider.c: idem * providers/postgres/gda-postgres-provider.c: idem * providers/sqlite/gda-sqlite-provider.c: added an extra column for data type synonyms 2005-04-22 Dru * libgda/gda-config.h: Fixed // problem with header file where it wasnt ansi C complient and causing build errors. 2005-04-21 Magnus Bergman Fixes #301485 * providers/oracle/gda-oracle-provider.c (gda_oracle_provider_supports, gda_oracle_provider_execute_command): made it compile with GCC 4. 2005-04-21 Magnus Bergman Fixes #301480 * configure.in: make it work with Oracle 10's headers. 2005-04-17 Alan Knowles * providers/mysql/gda-mysql-provider.c: * providers/mysql/gda-mysql-provider.c: * providers/mysql/gda-mysql-provider.h: * providers/mysql/gda-mysql-recordset.c: * providers/mysql/gda-mysql.h: * providers/mysql/utils.c: Fix mysql provider's internal usage of gda_mysql_provider_value_to_sql_string() 2005-04-17 Vivien Malerba * providers/postgres/gda-postgres-provider.c: Improved fields schema * providers/mysql/gda-mysql-provider.c: Added a procedures (functions) schema (needs more work) and a views schema (empty for now as MySQL does not support views) 2005-04-14 Murray Cumming * libgda/gda-xql-update.h: GdaXqlUpdate should contain an instance of the parent type (GdaXqlDml), not a pointer to one. This avoids glib warnings about the instance size. 2005-04-13 Vivien Malerba * applied patch from Jorge Bernal to fix bug #153292 * libgda/providers/sqlite/gda-sqlite-provider.c: implemented some missing schemas * libgda/providers/sqlite/sqlite-src/*: imported SQLite sources version 3.2.1, required by the SQLite provider (inner functions used). * configure.in: don't search for SQLite as it's embedded within libgda, always build it. * libgda/gda-init.c: test if glib threads are mot yet enabled before calling g_thread_init(). 2005-04-11 Bas Driessen * providers/mysql/utils.c (gda_mysql_value_to_sql_string_local): Restore old gda_mysql_value_to_string function under unique new name, as new function does not function in record set functions. * providers/mysql/gda-mysql-recordset.c (gda_mysql_recordset_append_row) (gda_mysql_recordset_remove_row): Change call to gda_mysql_value_to_string function to local one to prevent undefined symbol error aborts. 2005-04-10 Vivien Malerba * libgda/gda-data-model.[ch]: added gda_data_model_dump() * libgda/gda-init.c: added a call to g_thread_init() * libgda/gda-threader.[ch]: new GdaThreader object which allows to run a function in a new thread and be notified when that thread exits 2005-04-01 Steve Murphy * configure.in: Added "rw" to ALL_LINGUAS. 2005-03-25 Vivien Malerba * libgda/gda-data-model.[ch]: grouped the gda_data_model_to_comma_separated() and gda_data_model_to_tab_separated() into a single gda_data_model_to_text_separated() method * libgda/gda-data-model.[ch]: Added an optionnal argument to the export functions to provide which columns are to be exported 2005-03-24 Bas Driessen * providers/postgres/gda-postgres-recordset.c (gda_postgres_recordset_remove_row): Renamed some forgotten gda_field_attributes_... functions to gda_column_... Further use " for column names in 'WHERE' part of query. * providers/mysql/gda-mysql-recordset.c (gda_mysql_recordset_remove_row): Renamed some forgotten gda_field_attributes_... functions to gda_column_... 2005-03-23 Bas Driessen * providers/postgres/gda-postgres-recordset.c (gda_postgres_recordset_update_row): use " for column names in 'WHERE' part of query. 2005-03-21 Alan Knowles * providers/mysql/gda-mysql-recordset.c prevent segfault when running insert or update queries. 2005-03-21 Rodrigo Moya Released 1.3.1. 2005-03-19 Alan Knowles