[commits] Horde branch master updated. e2e084a517dfe3c732b3147fddfb6d2cf481b65a

Michael M Slusarz slusarz at horde.org
Tue May 25 03:51:13 UTC 2010


The branch "master" has been updated.
The following is a summary of the commits.

from: ee79f8d86c51d357077099e6163014ad348107b2

2e856e3 Add ability to add auto-increment to columns
556ca7c Add executeWrite().
e2e084a IMP tables now created via migration script

-----------------------------------------------------------------------

commit 2e856e3669ebc439d13bb8127b5ff29434525ad2
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Mon May 24 17:50:50 2010 -0600

    Add ability to add auto-increment to columns
    
    Only tested on PostgreSQL

 framework/Db/lib/Horde/Db/Adapter/Base/ColumnDefinition.php |   54 +++++++---
 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php           |    4 +
 framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php  |    9 ++
 framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php          |   38 +++++++-
 framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php          |    5 +-
 framework/Db/lib/Horde/Db/Adapter/Oracle/Schema.php         |   53 ++++++++++
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php     |   58 +++++++++--
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php         |    2 +
 framework/Db/package.xml                                    |    3 +-
 9 files changed, 195 insertions(+), 31 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/ColumnDefinition.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/Schema.php?rt=horde-git&r1=aa98cec29ae9eea639d828f1261e086f42d21a99&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php?rt=horde-git&r1=8be45558a5cd0d5e4ffb324e3b4259c20b05ec4a&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Mssql/Schema.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php?rt=horde-git&r1=aa98cec29ae9eea639d828f1261e086f42d21a99&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Oracle/Schema.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php?rt=horde-git&r1=aa98cec29ae9eea639d828f1261e086f42d21a99&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php?rt=horde-git&r1=aa98cec29ae9eea639d828f1261e086f42d21a99&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2
http://git.horde.org/diff.php/framework/Db/package.xml?rt=horde-git&r1=884568197036e1e38b4d2088f240da3a7c31c186&r2=2e856e3669ebc439d13bb8127b5ff29434525ad2

-----------------------------------------------------------------------

commit 556ca7c259f179d69a1bace18224280720889acc
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Mon May 24 21:38:44 2010 -0600

    Add executeWrite().
    
    Needed to run custom SQL queries that may need access to the write DB.

 framework/Db/lib/Horde/Db/Adapter/Base.php              |   26 ++++++++++++--
 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php       |   12 +++---
 framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php      |   12 +++---
 framework/Db/lib/Horde/Db/Adapter/Mysqli.php            |    2 +-
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php |   28 +++++++-------
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php     |    8 ++--
 6 files changed, 54 insertions(+), 34 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base.php?rt=horde-git&r1=50eba5d487269d44d2ec3764ad0e3a11f18e583b&r2=556ca7c259f179d69a1bace18224280720889acc
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/Schema.php?rt=horde-git&r1=2e856e3669ebc439d13bb8127b5ff29434525ad2&r2=556ca7c259f179d69a1bace18224280720889acc
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php?rt=horde-git&r1=2e856e3669ebc439d13bb8127b5ff29434525ad2&r2=556ca7c259f179d69a1bace18224280720889acc
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Mysqli.php?rt=horde-git&r1=4d640aaffb98067bcba8ece0b28bfb916afb2565&r2=556ca7c259f179d69a1bace18224280720889acc
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php?rt=horde-git&r1=2e856e3669ebc439d13bb8127b5ff29434525ad2&r2=556ca7c259f179d69a1bace18224280720889acc
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php?rt=horde-git&r1=2e856e3669ebc439d13bb8127b5ff29434525ad2&r2=556ca7c259f179d69a1bace18224280720889acc

-----------------------------------------------------------------------

commit e2e084a517dfe3c732b3147fddfb6d2cf481b65a
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Mon May 24 17:19:02 2010 -0600

    IMP tables now created via migration script

 imp/docs/INSTALL                    |   14 ++----
 imp/migration/1_imp_base_tables.php |   46 ++++++++++++++++
 imp/scripts/sql/imp.oci8.sql        |   15 -----
 imp/scripts/sql/imp.sql             |   15 -----
 imp/scripts/sql/imp.xml             |   97 -----------------------------------
 5 files changed, 50 insertions(+), 137 deletions(-)
 create mode 100644 imp/migration/1_imp_base_tables.php
 delete mode 100644 imp/scripts/sql/imp.oci8.sql
 delete mode 100644 imp/scripts/sql/imp.sql
 delete mode 100644 imp/scripts/sql/imp.xml

http://git.horde.org/diff.php/imp/docs/INSTALL?rt=horde-git&r1=a7a39f0cf109bc4fa2dec71b303d60d3d329746d&r2=e2e084a517dfe3c732b3147fddfb6d2cf481b65a
http://git.horde.org/co.php/imp/migration/1_imp_base_tables.php?rt=horde-git&r=e2e084a517dfe3c732b3147fddfb6d2cf481b65a
http://git.horde.org/diff.php/imp/scripts/sql/imp.oci8.sql?rt=horde-git&r1=99e7aaf59cae56bbdbbfe3256ce8d4564f547e49&r2=e2e084a517dfe3c732b3147fddfb6d2cf481b65a
http://git.horde.org/diff.php/imp/scripts/sql/imp.sql?rt=horde-git&r1=99e7aaf59cae56bbdbbfe3256ce8d4564f547e49&r2=e2e084a517dfe3c732b3147fddfb6d2cf481b65a
http://git.horde.org/diff.php/imp/scripts/sql/imp.xml?rt=horde-git&r1=99e7aaf59cae56bbdbbfe3256ce8d4564f547e49&r2=e2e084a517dfe3c732b3147fddfb6d2cf481b65a




More information about the commits mailing list