db icon indicating copy to clipboard operation
db copied to clipboard

Yii Database Library

Results 120 db issues
Sort by recently updated
recently updated
newest added

type:enhancement
status:under development

We can reduce the number of binding parameters by binding only values that need to be quoted (`string` and `binary` values). It is not necessary to bind `null`, `bool`, `int`...

type:enhancement
status:ready for adoption

Suggested to store in `ArrayExpression`, `StructuredExpression` and `JsonExpression` the string value retrieved from the database and convert it to an `array` or other PHP representation as the data is accessed....

type:feature

| Q | A | ------------- | --- | Is bugfix? | ❌ | New feature? | ✔️ | Breaks BC? | ✔️ Fix #773 - https://github.com/yiisoft/db-sqlite/pull/319

status:under development

Right now, if the batch is too big, we're getting into limits of DBMS like the following: ![image](https://github.com/user-attachments/assets/207f92e4-d04b-4e00-97d7-78d4311daf53) _The screenshot is from PostgreSQL._ I suggest doing two things: 1. Introduce...

status:ready for adoption
type:feature

### What steps will reproduce the problem? ```php $query->andWhere(['category_name' => CategoryEnum::blablacat]) ``` ### What is the expected result? Am want suggest add logic to query for transformate enum case object...

status:ready for adoption
type:feature

See https://github.com/yiisoft/docs/blob/master/010-code-style.md#names

status:ready for adoption

### What steps will reproduce the problem? ``` $query = ArClass::find(); $query->addSelect('extraField'); $item = $query->one(); ``` ### What is the expected result? `$item` has all default fields + 1 `extraField`,...

The latest updates from several DB such as MySQL, Oracle, PostgreSQL are all supporting JSON data type with basic operations: create, update, index, validate. Should we implement a support at...

Add SerializationFailureException. SQLSTATE code 40001 PDO exception substring: SQLSTATE[40001] Code is the same for all databases (mysql, pgsql, mssql, oracle).

type:enhancement
status:ready for adoption