» Version | » Information |
---|---|
0.8.6 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.6 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.6 Release date: 2015-11-26 15:19 UTC Release state: beta Release uploaded by: danielc Changelog: - PHP 7 support - Composer support - Update PHPUnit support and make unit tests more robust - Update dependencies - Remove renameKey() - Add some documentation (Bug #15189) - Improve PHPCS results (Bug #15064) - Fix saving debug checkbox state - Support max_identifiers_length (issue an error when identifier is longer than driver can handle) - Tables/sequences were not being marked to be removed when new definition didn't contains tables/sequences * Following last release changes, sequences drops are now controlled by an option * BC BREAK: drop_missing_tables option became drop_obsolete_objects (tables/sequences) - Make "sequence-on XML" element optional - Using HTML_Template_IT for mdb2_schematool templating open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support - PKs as constraints, not indices - Creation of constraints only after all tables have been created/updated to avoid invalid references. Dependencies:
|
0.8.5 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.5 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.5 Release date: 2009-02-22 22:12 UTC Release state: beta Release uploaded by: ifeghali Changelog: - PEAR dependency updated (Bug #15923) - XML_DTD dependency updated (past releases of XML_DTD doesn't works anymore. release 0.5.1 works only with PHP 5). - Fixed 'disable_queries' and 'show_structure' options that were malfunctioning in mdb2_schematool web version - Added an option to not drop obsolete tables when updating (Request #15278). It defaults not to drop, which reverts the behavior introduced in Release 0.8.3 open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support - PKs as constraints, not indices - Creation of constraints only after all tables have been created/updated to avoid invalid references. Dependencies:
|
0.8.4 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.4 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.4 Release date: 2008-11-17 18:30 UTC Release state: beta Release uploaded by: ifeghali Changelog: - fixed warning in validateTable() that was introduced in last release (Bug #15055) - fixed interpreter for mdb2_schematool, plus it is now been installed to bin_dir (now, really!) - mdb2_schematool has a new feature: initialize database - mdb2_schematool can now be used to dump data and/or database structure open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support Dependencies:
|
0.8.3 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.3 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.3 Release date: 2008-11-16 19:33 UTC Release state: beta Release uploaded by: ifeghali Changelog: - updateDatabase() cannot add UNIQUE attribute to an existing index (Bug #13977). Patch by Holger Schletz - updateDatabase() keeps old default value even though new column has no default (Bug #13836). Patch by Holger Schletz - Obsolete tables and sequences not dropped on updateDatabase() (Bug #13608). Patch by Holger Schletz - Error when creating a new index for a renamed table (Bug #13397) - Makes use of MDB2::databaseExists() to check whether updating database exists (Bug #13073). This feature was removed on previous release and now is back again. - createDatabase() correctly lower/upper database name when portability option deems so. - mdb2_schematool now disables transactions - mdb2_schematool was missing argument "help" - mdb2_schematool moved from "bin" to "scripts" folder. now installs to pear_bin dir - Schema validation not failing when autoincrement field is defined but another column is used as primary key (Bug #14213) - Accepting NOW() as value for timestamp fields on schema validation (Bug #14052). Patch by Holger Schletz - Introducing www/mdb2_schematool that is a rewrite of docs/examples/example.php and is now installed to web root - Web frontend (www/mdb2_schematool) has new options "DBA_username" and "DBA_password" - Tests missing sequences on database dump (Bug #13562). Patch by Luca Corbo - When reverse engineering a database, the XML schema file will have <charset> forced to UTF8 open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support Dependencies:
|
0.8.2 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.2 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.2 Release date: 2008-02-23 00:17 UTC Release state: beta Release uploaded by: ifeghali Changelog: - updated dependency - updated license disclaimer in source code files - use quoteIdentifier in getInstructionFields() (Bug #13037) - After database creation, sqlite db connection not usable (Bug #11920) - Supporting Database Charset (Bug #12908) - writeInitialization() fails at given conditions (Bug #12950) - drop usage of listDatabases() (Bug #12636), as a consequence updateDatabase() doesn't check anymore whether updating database exists - index-length documented and included in Parser2 (Bug #12540) - xsl transformation chooses wrong value for length (Bug #12261) - added README file for docs dir - the correct variable name for warning is "warnings" not "operation" in example script - disabled transactions in the example script - introducing mdb2_schematool, a command line tool to dump and load schemas open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support Dependencies:
|
0.8.1 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.1 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.1 Release date: 2007-08-30 16:04 UTC Release state: beta Release uploaded by: ifeghali Changelog: - updated dependency open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support Dependencies:
|
0.8.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.8.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.8.0 Release date: 2007-08-20 12:44 UTC Release state: beta Release uploaded by: ifeghali Changelog: - Primary Key is removed when updating a table against its XML (Bug #11604) - Added support to INSERT...SELECT syntax, so it is now possible to prevent data loss when rollback an updated database (Bug #10892) - Updated API of getInstructionFields() and getInstructionWhere() - It is now possible to prevent updateDatabase() of overwriting the old schema file - alterDatabaseTables() first add new tables, then remove the old one. it is necessary to save table data before a remove - updateDatabase() was aborting, under certain conditions, when <was> was not found (Bug #11600) - Now validating database definition when reverse engineering (Bug #11604) - createDatabase() has a new parameter that is passed to the database driver to set some options like table engine - Foreign Keys support - It is now possible to assign to a column the value of another column, of the same table, when inserting data - Fixed the HTML etities issue when parsing a schema file (Bug #11676) - XML Documentation, XSD and DST updated to show/expect the attributes in a unique order. Writer and parsers was also updated to handle the attributes in that some order. That said Parser and Parser2 must have the exactly same output for a given XML - Except for table fields, all other database elements are being initialized with all its attributes, no matter if those attributes are present on the XML or not - Many bugs fixed in Parser2, that was not creating a valid database definition - Introduced attribute "fixed" of table field declaration - validateIndex() is now checking whether a index has fields - Validate is not returning MDB2_OK instead of boolean true - XML Documentation and schema validators revised and updated open todo items: - Clean up output of getDefinitionFromDatabase(). Sync it with Parser and Parser2. - Automatically load reserved keywords - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Fulltext index support Dependencies:
|
0.7.2 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.7.2 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.7.2 Release date: 2007-04-07 09:57 UTC Release state: beta Release uploaded by: ifeghali Changelog: - Allow options to be passed in when creating tables (Bug #10278) - Existence of a single index results in no further index creation (Bug #10296) - MDB2_Schema::createTableIndexes() ignores indexes (Bug #10285) - column identifiers quoting problem (Bug #10195) - Handle 'scale' value in DECIMAL field definition (Bug #10475) - fixed phpdoc comment for validateDataField() - all primary keys are given an index name of "primary" (Bug #10457) - example.php should echo xml when no filename is given (Bug #10226) open todo items: - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Add ability to define variables inside the schema (like a version number) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Document how to use the API - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - HTML entities aren't being parsed correctly - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Foreign keys support - Fulltext index support Dependencies:
|
0.7.1 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.7.1 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.7.1 Release date: 2007-02-21 07:53 UTC Release state: beta Release uploaded by: ifeghali Changelog: - Package converted to version 2 - compareDefinition() was trying to update non-changing id field (Bug #8820) - for a moment <default> should be always parsed as string, no matter the field type. this behavior may change in the future. - undefined method MDB2_Schema::quoteIdentifier() (Bug #9172) - added support for explicit NULL (<null></null>) - <value></value> is now correctly being parsed as an empty string - fixed internal bug in Parser that was introduced in revision 1.46 (Bug #9435) - MDB2_Schema_Parser::setData() has been removed - MDB2_Schema_Validate::validateDataField() is validating field data again (Bug #9181) - updated reserved keywords of ibase - updated XML Schema documentation - updated XML Schema example - added a new test case to isBoolean() (empty string) - released the very first approach of the new parser that makes usage of XML_Serializer (alternative parser) open todo items: - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Add ability to define variables inside the schema (like a version number) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Document how to use the API - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - HTML entities aren't being parsed correctly - Add optional support for scale in decimal fields - Improve validateDataFieldValue() to validate <column> - Provide more info on MDB2_Schema_Validate errors (output parsed value and expected value) - Views support - Foreign keys support - Fulltext index support Dependencies:
|
0.7.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.7.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.7.0 Release date: 2006-10-21 17:23 UTC Release state: beta Release uploaded by: ifeghali Changelog: - Improved INSERT support, added UPDATE and DELETE statements - XML syntax redesigned to cover DML addictions - Creation of an explicit NULL (<null></null>) - various fixes to the DTD, including DML addictions - XSD schema definition created - Tests also output php version - New example parse.php lets you check how a XML schema is stored - Updated schema.xml to demo the DML support - Documentation reformulated, also covering new XML syntax - Improved demo script example.php, which now includes more actions and options - Writer is returning an error when fopen() fails - Writer has now its own error code - Variable "seq" became "sequence" and "seq_name" became "sequence_name" in the Parser - Moved validation code out of the Parser into a new separate class called Validation - Fixed index handling in the Parser - Refactored error handling in the Parser - Removed variable "init_field", that wasn't being used, from the Parser - Parser simulates only one level of recurssion, which means no more than function-expression or vice-versa - Fixed warning due to not checking with isset() in the Parser - Fixed warning due to not checking with isset() in the Schema - Typo fix (related to Bug #9024) - Fixed createDatabase() that was trying to use a non-existant database that was about to be created - Simplified API for compareTableFieldsDefinitions() and compareTableIndexesDefinitions() - Rewritten some docblocks - Added fold markers where missing - Removed @static from non static methods - Fixed several PEAR CS issues - Added code for field/identifier quoting - Ensure all identifiers are passed to quoteIdentifier() (Bug #8429) open todo items: - Make MDB2_Schema loadable via MDB2_Driver_Common::loadModule() (Bug #8270) - Add ability to define variables inside the schema (like a version number) - Allow simple if statements that mean that anything enclosed is only executed if it meets certain criterias based on that version number (or some other variable). This would enable people to add DML statements that are only executed when updating from a specific version. - Add support for recursive tag parsing. Currently only expression<->function is supported but not expression-expression or function-function, although recursion is already supported by the initializeTable() method - Parser should be replaced for XML serializer ? - Modularize Writer code or remake it - Add specific error codes for Validate class - Add support for ORDER clauses on UPDATEs (to resolve the duplicate key problem) - Update description.schema.xml - Document how to use the API - Create unit test for comparedefinitions() - Create unit test for initializetable() - Create unit test to compare the expected array definition with what is parsed - HTML entities aren't being parsed correctly - Add optional support for scale in decimal fields - Implement "WHERE column IS NULL" - Add ability to parse a "contents-only" XML dump Dependencies:
|
0.6.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.6.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.6.0 Release date: 2006-07-23 03:22 UTC Release state: beta Release uploaded by: lsmith Changelog: - added new XSL and CSS for xml schema file rendering (thx Bertrand) - automatically generate <on> tags in <sequence> tags if there is a table with the same name and a single column primary key - do not dump default for LOB fields (Bug #7596) - added support for "fixed" (needs more testing) - phpdoc tweaks (thx Stoyan) - fixed primary key emulation and some other minor issues in createTableIndexes() (Bug #7758) - implemented skip_unreadable parameter in parseDatabaseDefinition() (Bug #7756) - switched most array_key_exists() calls to !empty() to improve readability and performance - fixed a few edge cases and potential warnings - add method name as scope for call debug() calls - use getValidTypes() from MDB2 - hint if dropping a primary constraint - minor code tweak in how initialization data is set in the prepared statement - force ISO-8859-1 when parsing XML due to different defaults for PHP4 and PHP5 - fixed handling for changes in indexes/constaints (Bug #7901) - made forcing of defaults optional via the 'force_defaults' option (Request #8074) - fixed several issues in the DTD (Bug #7890) - set length and fixed for user_password in the test suite - use nested transactions instead of normal transactions Dependencies:
|
0.5.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.5.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.5.0 Release date: 2006-04-16 08:06 UTC Release state: beta Release uploaded by: lsmith Changelog: - expanded reserved word handling - fix LOB data dumping - added overwrite support to writer class - added comment for idxname_format setting to example - added autoincrement and primary to the documentation and .xsl/.dtd - if we cannot create the database, then assume it was created manually in the test suite - added option valid_types - added option to set parser and writer class - automatically let the installer set the API Version - make sure that the Datatype module is loaded - added valid_types property to determine if a given type is valid schema and to set missing default values - allow CURRENT_* as default in temporal types (bug #6416) - improve test suite documentation - added parseDatabaseDefinition() that can work with a file or array definition - removed database_definition property and as a result reworked the API of most methods *BC BREAK* - added _dumpBoolean() in writer to better support variables in boolean fields - allow method callbacks in MDB2_Schema_Writer::dumpDatabase (bug #7363) - set error code in all raiseError() calls - minor updates to the xml schema xsl and documentation (thx Bertrand) Dependencies:
|
0.4.3 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.4.3 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.4.3 Release date: 2006-02-05 11:04 UTC Release state: beta Release uploaded by: lsmith Changelog: - renamed "manager" property to "schema" for clarity in the testsuite - fixed logic related to using a non existant previous schema name in updateDatabase() open todo items: - better handling for NULL values in the xml schema format Dependencies:
|
0.4.2 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.4.2 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.4.2 Release date: 2006-01-13 19:14 UTC Release state: beta Release uploaded by: lsmith Changelog: - added ability to dump sql instead of commiting it to the database in the example - fix for bug in handling of boolean default values (bug #6397) - default to notnull = false in the schema parser - several fixes for database alterations (thx Matthias) - default for autoincrement can be '0' or 0 in the parser - set default 0 for autoincrement columns when reverse engineering a schema - expect MDB2_ERROR_ALREADY_EXISTS when creating a database (bug #6481) open todo items: - better handling for NULL values in the xml schema format Dependencies:
|
0.4.1 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.4.1 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.4.1 Release date: 2005-12-30 06:10 UTC Release state: beta Release uploaded by: lsmith Changelog: - fixed bug in updateDatabase() when using a file as the previous schema (bug was introduced in last release) - fixed install roles for test files Dependencies:
|
0.4.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.4.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.4.0 Release date: 2005-12-21 06:28 UTC Release state: beta Release uploaded by: lsmith Changelog: - Silence a "error" when there is auto increment and a primary key index defined on the same field, since auto increment implies a primary key - support column length in create index (mysql only feature, but a nice touch, emulating it with substring is not feasible though) - use exec() for INSERT statement - add extra debug info better use of the var_dump package if present in example - fixed bug in verifyAlterDatabase() when checking table alterations (bug #5977) - fixed typo in getTableConstraintDefinition() method name (removed additional "s") (bug #6054) - expect and ignore MDB2_ERROR_NOT_FOUND when calling getTableConstraintDefinition() and getTableIndexDefinition() (bug #6055) - fixed typo in verifyAlterDatabase() (bug #6053) - fixed typo in alterDatabaseSequences() (bug #6053) - added test suite - fixed issue in createDatabase() with portability fix case turned - ensure that all primary/unique/foreign key handling is only in the contraint methods - optionally allow schemas to be passed as an array to updateDatabase() (thx Matthias) Dependencies:
|
0.3.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.3.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.3.0 Release date: 2005-10-10 06:56 UTC Release state: beta Release uploaded by: lsmith Changelog: Warning: this is an intermediary release to address php 4.4/5.0.5. Some of the new features still need a bit more tweaking. - use MDB2::factory() by default instead of MDB2::connect() - added support for auto increment and primary key in schema. - alterTable now needs the full definition to work (use getTableFieldDefinition from Reverse module if you do not have a definition at hand) this eliminates the need of the declaration part in the alterTable array. - typo fix (bug #4620) - php 4.4.x/5.0.5 fixes - updated getTableFieldDefinition() call to accomodate API changes in MDB2 - MDB2_Schema has its own error class and error codes - made it easier to add new database backend to the example - better handle removing of indexes on renamed columns in alterDatabaseTables() - use array_key_exists() instead of isset() where possible - restructured changes array to fix bugs due to inconsistency in the handling of array keys - added ability to disable query for the alterDatabase()/createDatabase() call in updateDatabase(). this is useful to generate an RDBMS specific SQL file using a custom debug callback - prefer "true" and "false" over "1" and "0" - an emty default tag now implies NULL for nullable columns and an empty string for NOT NULL columns Dependencies:
|
0.2.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.2.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.2.0 Release date: 2005-04-29 13:04 UTC Release state: beta Release uploaded by: lsmith Changelog: - fixed error handling in updateDatabase() - use MDB2::raiseError - always copy schema file in updateDatabase() - cosmetic fixes and tweaks - improved overwrite to check via list*() before creating (bug #3857, #4101) - updated MDB2 dependency - fixed sequence dumping - moved schema documentation, xml_reverse_engineering.php, MDB.dtd and MDB.xls from MDB package - added optional support for PEAR::XML_DTD based validation of schema files - index can be defined on fields that dont explicity prohibit null values - dont disable sequence dumping when implicit sequences have been found - added code to support dumping of lobs (MDB2 really should move to streams) - added writeInitialization() method (untested) - is_boolean() => isBoolean() in parser (CS fix) - added MDB2_Schema::factory() - Parser: if set grab definition of a table from the strucure property if set Dependencies:
|
0.1.0 |
Easy InstallNot sure? Get more info. pear install MDB2_Schema-0.1.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/MDB2_Schema-0.1.0 Release date: 2005-04-07 04:41 UTC Release state: beta Release uploaded by: lsmith Changelog: This is the first unbundled release of the old MDB2_Tools_Manager class that was previously part of MDB2 until 2.0.0beta4. Due to the name change the package does not collide with previous versions of MDB2. Also the following changes were made in the process: - fixed index alteration in the Manager (bug #3710) - fixed bug in the Manager when upgrading a database that doesnt exist - moved logic to compareDefinitions from the Manager into the Datatype module - removed default_values property from the Manager (the user will now need to set the proper defaults himself) - do not require that not null fields have a default set in the Manager (bug #3997) - use MDB2::raiseError() instead of MDB2_Driver_Common::raiseError() - cleanedup connect() method to ensure that only MDB2 connections can be assigned to the db property - fixed bug in connect() method that prevented overwriting of options - several cleanups and fixes to the example.php (used to be called reverse_engineer_xml_schema.php) - added apiVersion() - use PEAR::raiseError() Dependencies:
|