├── .travis.yml ├── LICENSE.txt ├── README.md ├── aoe-logo.png ├── app ├── code │ └── community │ │ └── Aoe │ │ └── DbRetry │ │ ├── Resource │ │ └── Db │ │ │ └── Pdo │ │ │ └── Mysql │ │ │ ├── Adapter.php │ │ │ └── Type.php │ │ └── etc │ │ └── config.xml └── etc │ └── modules │ └── Aoe_DbRetry.xml ├── composer.json ├── modman └── phpcs.xml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/README.md -------------------------------------------------------------------------------- /aoe-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/aoe-logo.png -------------------------------------------------------------------------------- /app/code/community/Aoe/DbRetry/Resource/Db/Pdo/Mysql/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/app/code/community/Aoe/DbRetry/Resource/Db/Pdo/Mysql/Adapter.php -------------------------------------------------------------------------------- /app/code/community/Aoe/DbRetry/Resource/Db/Pdo/Mysql/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/app/code/community/Aoe/DbRetry/Resource/Db/Pdo/Mysql/Type.php -------------------------------------------------------------------------------- /app/code/community/Aoe/DbRetry/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/app/code/community/Aoe/DbRetry/etc/config.xml -------------------------------------------------------------------------------- /app/etc/modules/Aoe_DbRetry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/app/etc/modules/Aoe_DbRetry.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/modman -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOEpeople/Aoe_DbRetry/HEAD/phpcs.xml --------------------------------------------------------------------------------