db icon indicating copy to clipboard operation
db copied to clipboard

Yii Database Library

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

| Q | A | ------------- | --- | Is bugfix? | ✔️ | New feature? | ❌ | Breaks BC? | ❌

status:code review

| Q | A | ------------- | --- | Is bugfix? | ❌ | New feature? | ✔️ | Breaks BC? | ❌

status:code review

| Q | A | ------------- | --- | Is bugfix? | ✔️ | New feature? | ❌ | Breaks BC? | ❌

| Q | A | ------------- | --- | Is bugfix? | ✔️ | New feature? | ❌ | Breaks BC? | ❌

status:code review

| Q | A | ------------- | --- | Is bugfix? | ✔️ | New feature? | ❌ | Breaks BC? | ❌

status:code review

| Q | A | ------------- | --- | Is bugfix? | ✔️ | New feature? | ❌ | Breaks BC? | ❌

status:code review

| Q | A | ------------- | --- | Is bugfix? | ❌ | New feature? | ✔️ | Breaks BC? | ❌

status:code review

I need force index in my project, so I've add the method addHintIndex to set the hints indexes associated to a table. The param is an assoc array of the...

polar

I have: ``` php $query1 = (new \yii\db\Query()) ->select("id, category_id AS type, name") ->from('post') $query2 = (new \yii\db\Query()) ->select('id, type, name') ->from('user') ->orderBy('type'); $query1->union($query2); ``` This code generates the following...

polar

Dsn may be created either with host and port or with unix_socket. Currently there is no option to create dsn using unix socket. May be there should be two static...