├── .gitattributes ├── .gitignore ├── README.md ├── phpunit.xml ├── schemas └── phalcon_test.sql ├── test ├── .htaccess ├── app │ ├── cache │ │ ├── _home_fish_web_mssql_test_app_views_index.volt.php │ │ └── _home_fish_web_mssql_test_app_views_index_index.volt.php │ ├── config │ │ ├── config.php │ │ ├── loader.php │ │ └── services.php │ ├── controllers │ │ ├── ControllerBase.php │ │ └── IndexController.php │ ├── library │ │ └── db │ │ │ ├── adapter │ │ │ └── Mssql.php │ │ │ ├── dialect │ │ │ └── Mssql.php │ │ │ └── test.php │ ├── models │ │ └── Personas.php │ └── views │ │ ├── index.volt │ │ └── index │ │ └── index.volt ├── index.html └── public │ ├── .htaccess │ └── index.php └── unit-tests ├── DbBindTest.php ├── DbDescribeTest.php ├── DbDialectTest.php ├── DbProfilerTest.php ├── DbTest.php ├── ModelsBehaviorsTest.php ├── ModelsCalculationsTest.php ├── ModelsCriteriaTest.php ├── ModelsDynamicOperationsTest.php ├── ModelsEventsTest.php ├── ModelsFindersTest.php ├── ModelsForeignKeysTest.php ├── ModelsHydrationTest.php ├── ModelsMassAssigmentTest.php ├── ModelsMetadataAdaptersTest.php ├── ModelsMetadataManualTest.php ├── ModelsMetadataStrategyTest.php ├── ModelsMetadataTest.php ├── ModelsMultipleSourcesTest.php ├── ModelsQueryBuilderTest.php ├── ModelsQueryExecuteTest.php ├── ModelsQueryParsingTest.php ├── ModelsRelationsMagicTest.php ├── ModelsRelationsTest.php ├── ModelsResultsetCacheStaticTest.php ├── ModelsResultsetCacheTest.php ├── ModelsResultsetTest.php ├── ModelsSerializeTest.php ├── ModelsSnapshotsTest.php ├── ModelsTest.php ├── ModelsTransactionsTest.php ├── ModelsValidatorsTest.php ├── PaginatorTest.php ├── PlaygroundTest.php ├── cache ├── map-robots.php └── meta-robots-robots.php ├── config.db.local.php ├── config.db.php ├── db ├── adapter │ └── Mssql.php ├── dialect │ └── Mssql.php └── test.php ├── helpers └── xcache.php ├── loader.php └── models ├── Abonnes.php ├── AlbumORama ├── Albums.php ├── Artists.php └── Songs.php ├── Boutique.php ├── Boutique ├── Robots.php └── Robotters.php ├── Cacheable ├── Model.php ├── Parts.php ├── Robots.php └── RobotsParts.php ├── Deles.php ├── Dynamic ├── Personas.php └── Personers.php ├── GossipRobots.php ├── News └── Subscribers.php ├── Parts.php ├── People.php ├── Personas.php ├── Personers.php ├── Personnes.php ├── Pessoas.php ├── Products.php ├── Prueba.php ├── Relations ├── Deles.php ├── M2MParts.php ├── M2MRobots.php ├── M2MRobotsParts.php ├── RelationsParts.php ├── RelationsRobots.php ├── RelationsRobotsParts.php ├── Robotters.php ├── RobottersDeles.php └── Some │ ├── Deles.php │ ├── Parts.php │ ├── Products.php │ ├── Robots.php │ ├── RobotsParts.php │ ├── Robotters.php │ └── RobottersDeles.php ├── Robots.php ├── RobotsParts.php ├── Robotters.php ├── RobottersDeles.php ├── Robotto.php ├── Snapshot ├── Parts.php ├── Robots.php ├── RobotsParts.php └── Robotters.php ├── Some ├── Deles.php ├── Parts.php ├── Products.php ├── Robots.php ├── RobotsParts.php ├── Robotters.php └── RobottersDeles.php ├── Store ├── Parts.php ├── Robots.php └── RobotsParts.php ├── Subscribers.php └── Subscriptores.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/README.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/phpunit.xml -------------------------------------------------------------------------------- /schemas/phalcon_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/schemas/phalcon_test.sql -------------------------------------------------------------------------------- /test/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/.htaccess -------------------------------------------------------------------------------- /test/app/cache/_home_fish_web_mssql_test_app_views_index.volt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/cache/_home_fish_web_mssql_test_app_views_index.volt.php -------------------------------------------------------------------------------- /test/app/cache/_home_fish_web_mssql_test_app_views_index_index.volt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/cache/_home_fish_web_mssql_test_app_views_index_index.volt.php -------------------------------------------------------------------------------- /test/app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/config/config.php -------------------------------------------------------------------------------- /test/app/config/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/config/loader.php -------------------------------------------------------------------------------- /test/app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/config/services.php -------------------------------------------------------------------------------- /test/app/controllers/ControllerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/controllers/ControllerBase.php -------------------------------------------------------------------------------- /test/app/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/controllers/IndexController.php -------------------------------------------------------------------------------- /test/app/library/db/adapter/Mssql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/library/db/adapter/Mssql.php -------------------------------------------------------------------------------- /test/app/library/db/dialect/Mssql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/library/db/dialect/Mssql.php -------------------------------------------------------------------------------- /test/app/library/db/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishjerky/phalcon-mssql/HEAD/test/app/library/db/test.php -------------------------------------------------------------------------------- /test/app/models/Personas.php: -------------------------------------------------------------------------------- 1 |