├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Adapter ├── Adapter.php ├── AdapterAbstractServiceFactory.php ├── AdapterAwareInterface.php ├── AdapterAwareTrait.php ├── AdapterInterface.php ├── AdapterServiceFactory.php ├── Driver │ ├── AbstractConnection.php │ ├── ConnectionInterface.php │ ├── DriverInterface.php │ ├── Feature │ │ ├── AbstractFeature.php │ │ └── DriverFeatureInterface.php │ ├── IbmDb2 │ │ ├── Connection.php │ │ ├── IbmDb2.php │ │ ├── Result.php │ │ └── Statement.php │ ├── Mysqli │ │ ├── Connection.php │ │ ├── Mysqli.php │ │ ├── Result.php │ │ └── Statement.php │ ├── Oci8 │ │ ├── Connection.php │ │ ├── Feature │ │ │ └── RowCounter.php │ │ ├── Oci8.php │ │ ├── Result.php │ │ └── Statement.php │ ├── Pdo │ │ ├── Connection.php │ │ ├── Feature │ │ │ ├── OracleRowCounter.php │ │ │ └── SqliteRowCounter.php │ │ ├── Pdo.php │ │ ├── Result.php │ │ └── Statement.php │ ├── Pgsql │ │ ├── Connection.php │ │ ├── Pgsql.php │ │ ├── Result.php │ │ └── Statement.php │ ├── ResultInterface.php │ ├── Sqlsrv │ │ ├── Connection.php │ │ ├── Exception │ │ │ ├── ErrorException.php │ │ │ └── ExceptionInterface.php │ │ ├── Result.php │ │ ├── Sqlsrv.php │ │ └── Statement.php │ └── StatementInterface.php ├── Exception │ ├── ErrorException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidConnectionParametersException.php │ ├── InvalidQueryException.php │ ├── RuntimeException.php │ └── UnexpectedValueException.php ├── ParameterContainer.php ├── Platform │ ├── AbstractPlatform.php │ ├── IbmDb2.php │ ├── Mysql.php │ ├── Oracle.php │ ├── PlatformInterface.php │ ├── Postgresql.php │ ├── Sql92.php │ ├── SqlServer.php │ └── Sqlite.php ├── Profiler │ ├── Profiler.php │ ├── ProfilerAwareInterface.php │ └── ProfilerInterface.php ├── StatementContainer.php └── StatementContainerInterface.php ├── ConfigProvider.php ├── Exception ├── ErrorException.php ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── RuntimeException.php └── UnexpectedValueException.php ├── Metadata ├── Metadata.php ├── MetadataInterface.php ├── Object │ ├── AbstractTableObject.php │ ├── ColumnObject.php │ ├── ConstraintKeyObject.php │ ├── ConstraintObject.php │ ├── TableObject.php │ ├── TriggerObject.php │ └── ViewObject.php └── Source │ ├── AbstractSource.php │ ├── Factory.php │ ├── MysqlMetadata.php │ ├── OracleMetadata.php │ ├── PostgresqlMetadata.php │ ├── SqlServerMetadata.php │ └── SqliteMetadata.php ├── Module.php ├── ResultSet ├── AbstractResultSet.php ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php ├── HydratingResultSet.php ├── ResultSet.php └── ResultSetInterface.php ├── RowGateway ├── AbstractRowGateway.php ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php ├── Feature │ ├── AbstractFeature.php │ └── FeatureSet.php ├── RowGateway.php └── RowGatewayInterface.php ├── Sql ├── AbstractExpression.php ├── AbstractPreparableSql.php ├── AbstractSql.php ├── Combine.php ├── Ddl │ ├── AlterTable.php │ ├── Column │ │ ├── AbstractLengthColumn.php │ │ ├── AbstractPrecisionColumn.php │ │ ├── AbstractTimestampColumn.php │ │ ├── BigInteger.php │ │ ├── Binary.php │ │ ├── Blob.php │ │ ├── Boolean.php │ │ ├── Char.php │ │ ├── Column.php │ │ ├── ColumnInterface.php │ │ ├── Date.php │ │ ├── Datetime.php │ │ ├── Decimal.php │ │ ├── Float.php │ │ ├── Floating.php │ │ ├── Integer.php │ │ ├── Text.php │ │ ├── Time.php │ │ ├── Timestamp.php │ │ ├── Varbinary.php │ │ └── Varchar.php │ ├── Constraint │ │ ├── AbstractConstraint.php │ │ ├── Check.php │ │ ├── ConstraintInterface.php │ │ ├── ForeignKey.php │ │ ├── PrimaryKey.php │ │ └── UniqueKey.php │ ├── CreateTable.php │ ├── DropTable.php │ ├── Index │ │ ├── AbstractIndex.php │ │ └── Index.php │ └── SqlInterface.php ├── Delete.php ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php ├── Expression.php ├── ExpressionInterface.php ├── Having.php ├── Insert.php ├── InsertIgnore.php ├── Join.php ├── Literal.php ├── Platform │ ├── AbstractPlatform.php │ ├── IbmDb2 │ │ ├── IbmDb2.php │ │ └── SelectDecorator.php │ ├── Mysql │ │ ├── Ddl │ │ │ ├── AlterTableDecorator.php │ │ │ └── CreateTableDecorator.php │ │ ├── Mysql.php │ │ └── SelectDecorator.php │ ├── Oracle │ │ ├── Oracle.php │ │ └── SelectDecorator.php │ ├── Platform.php │ ├── PlatformDecoratorInterface.php │ ├── SqlServer │ │ ├── Ddl │ │ │ └── CreateTableDecorator.php │ │ ├── SelectDecorator.php │ │ └── SqlServer.php │ └── Sqlite │ │ ├── SelectDecorator.php │ │ └── Sqlite.php ├── Predicate │ ├── Between.php │ ├── Expression.php │ ├── In.php │ ├── IsNotNull.php │ ├── IsNull.php │ ├── Like.php │ ├── Literal.php │ ├── NotBetween.php │ ├── NotIn.php │ ├── NotLike.php │ ├── Operator.php │ ├── Predicate.php │ ├── PredicateInterface.php │ └── PredicateSet.php ├── PreparableSqlInterface.php ├── Select.php ├── Sql.php ├── SqlInterface.php ├── TableIdentifier.php ├── Update.php └── Where.php └── TableGateway ├── AbstractTableGateway.php ├── Exception ├── ExceptionInterface.php ├── InvalidArgumentException.php └── RuntimeException.php ├── Feature ├── AbstractFeature.php ├── EventFeature.php ├── EventFeature │ └── TableGatewayEvent.php ├── EventFeatureEventsInterface.php ├── FeatureSet.php ├── GlobalAdapterFeature.php ├── MasterSlaveFeature.php ├── MetadataFeature.php ├── RowGatewayFeature.php └── SequenceFeature.php ├── TableGateway.php └── TableGatewayInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/composer.json -------------------------------------------------------------------------------- /src/Adapter/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Adapter.php -------------------------------------------------------------------------------- /src/Adapter/AdapterAbstractServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/AdapterAbstractServiceFactory.php -------------------------------------------------------------------------------- /src/Adapter/AdapterAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/AdapterAwareInterface.php -------------------------------------------------------------------------------- /src/Adapter/AdapterAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/AdapterAwareTrait.php -------------------------------------------------------------------------------- /src/Adapter/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/AdapterInterface.php -------------------------------------------------------------------------------- /src/Adapter/AdapterServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/AdapterServiceFactory.php -------------------------------------------------------------------------------- /src/Adapter/Driver/AbstractConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/AbstractConnection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Adapter/Driver/DriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/DriverInterface.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Feature/AbstractFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Feature/AbstractFeature.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Feature/DriverFeatureInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Feature/DriverFeatureInterface.php -------------------------------------------------------------------------------- /src/Adapter/Driver/IbmDb2/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/IbmDb2/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/IbmDb2/IbmDb2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/IbmDb2/IbmDb2.php -------------------------------------------------------------------------------- /src/Adapter/Driver/IbmDb2/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/IbmDb2/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/IbmDb2/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/IbmDb2/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Mysqli/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Mysqli/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Mysqli/Mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Mysqli/Mysqli.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Mysqli/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Mysqli/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Mysqli/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Mysqli/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Oci8/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Oci8/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Oci8/Feature/RowCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Oci8/Feature/RowCounter.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Oci8/Oci8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Oci8/Oci8.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Oci8/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Oci8/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Oci8/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Oci8/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Feature/OracleRowCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Feature/OracleRowCounter.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Pdo.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pdo/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pdo/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pgsql/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pgsql/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pgsql/Pgsql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pgsql/Pgsql.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pgsql/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pgsql/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Pgsql/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Pgsql/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/ResultInterface.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Connection.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Exception/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Exception/ErrorException.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Result.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Sqlsrv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Sqlsrv.php -------------------------------------------------------------------------------- /src/Adapter/Driver/Sqlsrv/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/Sqlsrv/Statement.php -------------------------------------------------------------------------------- /src/Adapter/Driver/StatementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Driver/StatementInterface.php -------------------------------------------------------------------------------- /src/Adapter/Exception/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/ErrorException.php -------------------------------------------------------------------------------- /src/Adapter/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Adapter/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Adapter/Exception/InvalidConnectionParametersException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/InvalidConnectionParametersException.php -------------------------------------------------------------------------------- /src/Adapter/Exception/InvalidQueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/InvalidQueryException.php -------------------------------------------------------------------------------- /src/Adapter/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Adapter/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Exception/UnexpectedValueException.php -------------------------------------------------------------------------------- /src/Adapter/ParameterContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/ParameterContainer.php -------------------------------------------------------------------------------- /src/Adapter/Platform/AbstractPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/AbstractPlatform.php -------------------------------------------------------------------------------- /src/Adapter/Platform/IbmDb2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/IbmDb2.php -------------------------------------------------------------------------------- /src/Adapter/Platform/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/Mysql.php -------------------------------------------------------------------------------- /src/Adapter/Platform/Oracle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/Oracle.php -------------------------------------------------------------------------------- /src/Adapter/Platform/PlatformInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/PlatformInterface.php -------------------------------------------------------------------------------- /src/Adapter/Platform/Postgresql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/Postgresql.php -------------------------------------------------------------------------------- /src/Adapter/Platform/Sql92.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/Sql92.php -------------------------------------------------------------------------------- /src/Adapter/Platform/SqlServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/SqlServer.php -------------------------------------------------------------------------------- /src/Adapter/Platform/Sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Platform/Sqlite.php -------------------------------------------------------------------------------- /src/Adapter/Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Profiler/Profiler.php -------------------------------------------------------------------------------- /src/Adapter/Profiler/ProfilerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Profiler/ProfilerAwareInterface.php -------------------------------------------------------------------------------- /src/Adapter/Profiler/ProfilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/Profiler/ProfilerInterface.php -------------------------------------------------------------------------------- /src/Adapter/StatementContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/StatementContainer.php -------------------------------------------------------------------------------- /src/Adapter/StatementContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Adapter/StatementContainerInterface.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Exception/ErrorException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Exception/UnexpectedValueException.php -------------------------------------------------------------------------------- /src/Metadata/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Metadata.php -------------------------------------------------------------------------------- /src/Metadata/MetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/MetadataInterface.php -------------------------------------------------------------------------------- /src/Metadata/Object/AbstractTableObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/AbstractTableObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/ColumnObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/ColumnObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/ConstraintKeyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/ConstraintKeyObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/ConstraintObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/ConstraintObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/TableObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/TableObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/TriggerObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/TriggerObject.php -------------------------------------------------------------------------------- /src/Metadata/Object/ViewObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Object/ViewObject.php -------------------------------------------------------------------------------- /src/Metadata/Source/AbstractSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/AbstractSource.php -------------------------------------------------------------------------------- /src/Metadata/Source/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/Factory.php -------------------------------------------------------------------------------- /src/Metadata/Source/MysqlMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/MysqlMetadata.php -------------------------------------------------------------------------------- /src/Metadata/Source/OracleMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/OracleMetadata.php -------------------------------------------------------------------------------- /src/Metadata/Source/PostgresqlMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/PostgresqlMetadata.php -------------------------------------------------------------------------------- /src/Metadata/Source/SqlServerMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/SqlServerMetadata.php -------------------------------------------------------------------------------- /src/Metadata/Source/SqliteMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Metadata/Source/SqliteMetadata.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/ResultSet/AbstractResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/AbstractResultSet.php -------------------------------------------------------------------------------- /src/ResultSet/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/ResultSet/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/ResultSet/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/ResultSet/HydratingResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/HydratingResultSet.php -------------------------------------------------------------------------------- /src/ResultSet/ResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/ResultSet.php -------------------------------------------------------------------------------- /src/ResultSet/ResultSetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/ResultSet/ResultSetInterface.php -------------------------------------------------------------------------------- /src/RowGateway/AbstractRowGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/AbstractRowGateway.php -------------------------------------------------------------------------------- /src/RowGateway/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/RowGateway/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/RowGateway/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/RowGateway/Feature/AbstractFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/Feature/AbstractFeature.php -------------------------------------------------------------------------------- /src/RowGateway/Feature/FeatureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/Feature/FeatureSet.php -------------------------------------------------------------------------------- /src/RowGateway/RowGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/RowGateway.php -------------------------------------------------------------------------------- /src/RowGateway/RowGatewayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/RowGateway/RowGatewayInterface.php -------------------------------------------------------------------------------- /src/Sql/AbstractExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/AbstractExpression.php -------------------------------------------------------------------------------- /src/Sql/AbstractPreparableSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/AbstractPreparableSql.php -------------------------------------------------------------------------------- /src/Sql/AbstractSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/AbstractSql.php -------------------------------------------------------------------------------- /src/Sql/Combine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Combine.php -------------------------------------------------------------------------------- /src/Sql/Ddl/AlterTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/AlterTable.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/AbstractLengthColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/AbstractLengthColumn.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/AbstractPrecisionColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/AbstractPrecisionColumn.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/AbstractTimestampColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/AbstractTimestampColumn.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/BigInteger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/BigInteger.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Binary.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Blob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Blob.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Boolean.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Char.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Char.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Column.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/ColumnInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/ColumnInterface.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Date.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Datetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Datetime.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Decimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Decimal.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Float.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Float.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Floating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Floating.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Integer.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Text.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Time.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Timestamp.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Varbinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Varbinary.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Column/Varchar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Column/Varchar.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/AbstractConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/AbstractConstraint.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/Check.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/ConstraintInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/ConstraintInterface.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/ForeignKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/ForeignKey.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/PrimaryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/PrimaryKey.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Constraint/UniqueKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Constraint/UniqueKey.php -------------------------------------------------------------------------------- /src/Sql/Ddl/CreateTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/CreateTable.php -------------------------------------------------------------------------------- /src/Sql/Ddl/DropTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/DropTable.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Index/AbstractIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Index/AbstractIndex.php -------------------------------------------------------------------------------- /src/Sql/Ddl/Index/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/Index/Index.php -------------------------------------------------------------------------------- /src/Sql/Ddl/SqlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Ddl/SqlInterface.php -------------------------------------------------------------------------------- /src/Sql/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Delete.php -------------------------------------------------------------------------------- /src/Sql/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Sql/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Sql/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Sql/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Expression.php -------------------------------------------------------------------------------- /src/Sql/ExpressionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/ExpressionInterface.php -------------------------------------------------------------------------------- /src/Sql/Having.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Having.php -------------------------------------------------------------------------------- /src/Sql/Insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Insert.php -------------------------------------------------------------------------------- /src/Sql/InsertIgnore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/InsertIgnore.php -------------------------------------------------------------------------------- /src/Sql/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Join.php -------------------------------------------------------------------------------- /src/Sql/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Literal.php -------------------------------------------------------------------------------- /src/Sql/Platform/AbstractPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/AbstractPlatform.php -------------------------------------------------------------------------------- /src/Sql/Platform/IbmDb2/IbmDb2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/IbmDb2/IbmDb2.php -------------------------------------------------------------------------------- /src/Sql/Platform/IbmDb2/SelectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/IbmDb2/SelectDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Mysql/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Mysql/Mysql.php -------------------------------------------------------------------------------- /src/Sql/Platform/Mysql/SelectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Mysql/SelectDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Oracle/Oracle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Oracle/Oracle.php -------------------------------------------------------------------------------- /src/Sql/Platform/Oracle/SelectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Oracle/SelectDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Platform.php -------------------------------------------------------------------------------- /src/Sql/Platform/PlatformDecoratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/PlatformDecoratorInterface.php -------------------------------------------------------------------------------- /src/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/SqlServer/SelectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/SqlServer/SelectDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/SqlServer/SqlServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/SqlServer/SqlServer.php -------------------------------------------------------------------------------- /src/Sql/Platform/Sqlite/SelectDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Sqlite/SelectDecorator.php -------------------------------------------------------------------------------- /src/Sql/Platform/Sqlite/Sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Platform/Sqlite/Sqlite.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Between.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Between.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Expression.php -------------------------------------------------------------------------------- /src/Sql/Predicate/In.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/In.php -------------------------------------------------------------------------------- /src/Sql/Predicate/IsNotNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/IsNotNull.php -------------------------------------------------------------------------------- /src/Sql/Predicate/IsNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/IsNull.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Like.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Literal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Literal.php -------------------------------------------------------------------------------- /src/Sql/Predicate/NotBetween.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/NotBetween.php -------------------------------------------------------------------------------- /src/Sql/Predicate/NotIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/NotIn.php -------------------------------------------------------------------------------- /src/Sql/Predicate/NotLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/NotLike.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Operator.php -------------------------------------------------------------------------------- /src/Sql/Predicate/Predicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/Predicate.php -------------------------------------------------------------------------------- /src/Sql/Predicate/PredicateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/PredicateInterface.php -------------------------------------------------------------------------------- /src/Sql/Predicate/PredicateSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Predicate/PredicateSet.php -------------------------------------------------------------------------------- /src/Sql/PreparableSqlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/PreparableSqlInterface.php -------------------------------------------------------------------------------- /src/Sql/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Select.php -------------------------------------------------------------------------------- /src/Sql/Sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Sql.php -------------------------------------------------------------------------------- /src/Sql/SqlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/SqlInterface.php -------------------------------------------------------------------------------- /src/Sql/TableIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/TableIdentifier.php -------------------------------------------------------------------------------- /src/Sql/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Update.php -------------------------------------------------------------------------------- /src/Sql/Where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/Sql/Where.php -------------------------------------------------------------------------------- /src/TableGateway/AbstractTableGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/AbstractTableGateway.php -------------------------------------------------------------------------------- /src/TableGateway/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/TableGateway/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/TableGateway/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/AbstractFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/AbstractFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/EventFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/EventFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/EventFeature/TableGatewayEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/EventFeature/TableGatewayEvent.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/EventFeatureEventsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/EventFeatureEventsInterface.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/FeatureSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/FeatureSet.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/GlobalAdapterFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/GlobalAdapterFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/MasterSlaveFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/MasterSlaveFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/MetadataFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/MetadataFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/RowGatewayFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/RowGatewayFeature.php -------------------------------------------------------------------------------- /src/TableGateway/Feature/SequenceFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/Feature/SequenceFeature.php -------------------------------------------------------------------------------- /src/TableGateway/TableGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/TableGateway.php -------------------------------------------------------------------------------- /src/TableGateway/TableGatewayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-db/HEAD/src/TableGateway/TableGatewayInterface.php --------------------------------------------------------------------------------