datasources
datasources copied to clipboard
CakePHP Datasources
When I use "find", this error was shown. Notice (8): Undefined index: database [CORE/Cake/Model/Datasource/DataSource.php, line 104]
Transaction support "Database / SQLSRV" ..? It supports CakePHP 2.6.x Database / SQLSRV ..? and it supports Transaction ..?
Per "Model/Datasource/DataSource.php", describe should return a metadata array, not a list of fields. When proper metadata isn't returned by describe, other functionality (such as $model->getColumnTypes()), is broken. Many behaviors depend...
Added isConnected function to ArraySource so it is compatible with CakePHP 2.5.2 Resolves https://github.com/cakephp/datasources/issues/107
Patches Array Datasource by disabling fields-filtering feature, since it was not behaving properly when querying hasMany/HABTM related models (see commit's source code for detailed explanation). > The reason for this...
Fix LdapSource read queries to properly handle conversion of conditions array to LDAP filter, to support offsets, and to properly handle counts (though still a hack). - Replace broken _conditionsArrayToString()...
Situation: An array-based countries table with no record with country_iso_3_code being empty. ```` php $result = $countryModel->find('list', array( 'conditions' => array('country_iso_3_code' => ''), ) ); ```` Expected $result to be...
Fixed issues with table creation so default PK has type integer autoincrement Original pull request was closed due to this issue, https://github.com/cakephp/datasources/pull/21
Fitness for CakePHP 2.0 Changed from cakeError() to MissingConnectionException() Added method to search for the latest revision updates without the review Change the query() method to let you use the...