Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
fd5e6ccf
Commit
fd5e6ccf
authored
May 11, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed db exception according to signature change
parent
baac7e14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
ActiveRecord.php
yii/db/redis/ActiveRecord.php
+0
-1
Connection.php
yii/db/redis/Connection.php
+2
-2
No files found.
yii/db/redis/ActiveRecord.php
View file @
fd5e6ccf
...
@@ -14,7 +14,6 @@ use yii\base\InvalidConfigException;
...
@@ -14,7 +14,6 @@ use yii\base\InvalidConfigException;
use
yii\base\InvalidParamException
;
use
yii\base\InvalidParamException
;
use
yii\base\NotSupportedException
;
use
yii\base\NotSupportedException
;
use
yii\base\UnknownMethodException
;
use
yii\base\UnknownMethodException
;
use
yii\db\Exception
;
use
yii\db\TableSchema
;
use
yii\db\TableSchema
;
/**
/**
...
...
yii/db/redis/Connection.php
View file @
fd5e6ccf
...
@@ -256,7 +256,7 @@ class Connection extends Component
...
@@ -256,7 +256,7 @@ class Connection extends Component
}
else
{
}
else
{
\Yii
::
error
(
"Failed to open DB connection (
{
$this
->
dsn
}
): "
.
$errorNumber
.
' - '
.
$errorDescription
,
__CLASS__
);
\Yii
::
error
(
"Failed to open DB connection (
{
$this
->
dsn
}
): "
.
$errorNumber
.
' - '
.
$errorDescription
,
__CLASS__
);
$message
=
YII_DEBUG
?
'Failed to open DB connection: '
.
$errorNumber
.
' - '
.
$errorDescription
:
'Failed to open DB connection.'
;
$message
=
YII_DEBUG
?
'Failed to open DB connection: '
.
$errorNumber
.
' - '
.
$errorDescription
:
'Failed to open DB connection.'
;
throw
new
Exception
(
$message
,
(
int
)
$errorNumber
,
$errorDescription
);
throw
new
Exception
(
$message
,
$errorDescription
,
(
int
)
$errorNumber
);
}
}
}
}
}
}
...
@@ -355,7 +355,7 @@ class Connection extends Component
...
@@ -355,7 +355,7 @@ class Connection extends Component
*
*
* See [redis protocol description](http://redis.io/topics/protocol)
* See [redis protocol description](http://redis.io/topics/protocol)
* for details on the mentioned reply types.
* for details on the mentioned reply types.
* @trows
C
Exception for commands that return [error reply](http://redis.io/topics/protocol#error-reply).
* @trows Exception for commands that return [error reply](http://redis.io/topics/protocol#error-reply).
*/
*/
public
function
executeCommand
(
$name
,
$params
=
array
())
public
function
executeCommand
(
$name
,
$params
=
array
())
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment