Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Tomáš Trávníček
doctrine-dbal
Commits
7a35e676
Commit
7a35e676
authored
Dec 06, 2006
by
chtito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implements setCharset for mysql, no exception if setCharset is not implemented (fixes #244)
parent
a65e106e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
Connection.php
lib/Doctrine/Connection.php
+1
-4
Mysql.php
lib/Doctrine/Connection/Mysql.php
+11
-0
No files found.
lib/Doctrine/Connection.php
View file @
7a35e676
...
...
@@ -450,13 +450,10 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
* Set the charset on the current connection
*
* @param string charset
* @param resource connection handle
*
* @throws Doctrine_Connection_Exception if the feature is not supported by the driver
* @return true on success, MDB2 Error Object on failure
* @return void
*/
public
function
setCharset
(
$charset
)
{
throw
new
Doctrine_Connection_Exception
(
'Altering charset not supported by this driver.'
);
}
/**
* fetchAll
...
...
lib/Doctrine/Connection/Mysql.php
View file @
7a35e676
...
...
@@ -88,6 +88,17 @@ class Doctrine_Connection_Mysql extends Doctrine_Connection_Common {
parent
::
__construct
(
$manager
,
$adapter
);
}
/**
* Set the charset on the current connection
*
* @param string charset
*
* @return void
*/
public
function
setCharset
(
$charset
)
{
$query
=
'SET NAMES '
.
$this
->
dbh
->
quote
(
$charset
);
$this
->
dbh
->
query
(
$query
);
}
/**
* Returns the next free id of a sequence
*
...
...
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