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
0390a998
Commit
0390a998
authored
Nov 28, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use backquotes to quote column and table names for sqlite (related with #1318)
parent
0b1ddc93
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
6 deletions
+28
-6
Schema.php
framework/yii/db/sqlite/Schema.php
+22
-0
SqliteCommandTest.php
tests/unit/framework/db/sqlite/SqliteCommandTest.php
+1
-1
SqliteConnectionTest.php
tests/unit/framework/db/sqlite/SqliteConnectionTest.php
+4
-4
SqliteQueryBuilderTest.php
tests/unit/framework/db/sqlite/SqliteQueryBuilderTest.php
+1
-1
No files found.
framework/yii/db/sqlite/Schema.php
View file @
0390a998
...
...
@@ -50,6 +50,28 @@ class Schema extends \yii\db\Schema
];
/**
* Quotes a table name for use in a query.
* A simple table name has no schema prefix.
* @param string $name table name
* @return string the properly quoted table name
*/
public
function
quoteSimpleTableName
(
$name
)
{
return
strpos
(
$name
,
"`"
)
!==
false
?
$name
:
"`"
.
$name
.
"`"
;
}
/**
* Quotes a column name for use in a query.
* A simple column name has no prefix.
* @param string $name column name
* @return string the properly quoted column name
*/
public
function
quoteSimpleColumnName
(
$name
)
{
return
strpos
(
$name
,
'`'
)
!==
false
||
$name
===
'*'
?
$name
:
'`'
.
$name
.
'`'
;
}
/**
* Creates a query builder for the MySQL database.
* This method may be overridden by child classes to create a DBMS-specific query builder.
* @return QueryBuilder query builder instance
...
...
tests/unit/framework/db/sqlite/SqliteCommandTest.php
View file @
0390a998
...
...
@@ -17,6 +17,6 @@ class SqliteCommandTest extends CommandTest
$sql
=
'SELECT [[id]], [[t.name]] FROM {{tbl_customer}} t'
;
$command
=
$db
->
createCommand
(
$sql
);
$this
->
assertEquals
(
"SELECT
\"
id
\"
, 't'.
\"
name
\"
FROM 'tbl_customer'
t"
,
$command
->
sql
);
$this
->
assertEquals
(
"SELECT
`id`, `t`.`name` FROM `tbl_customer`
t"
,
$command
->
sql
);
}
}
tests/unit/framework/db/sqlite/SqliteConnectionTest.php
View file @
0390a998
...
...
@@ -30,8 +30,8 @@ class SqliteConnectionTest extends ConnectionTest
public
function
testQuoteTableName
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
"
'table'
"
,
$connection
->
quoteTableName
(
'table'
));
$this
->
assertEquals
(
"
'schema'.'table'
"
,
$connection
->
quoteTableName
(
'schema.table'
));
$this
->
assertEquals
(
"
`table`
"
,
$connection
->
quoteTableName
(
'table'
));
$this
->
assertEquals
(
"
`schema`.`table`
"
,
$connection
->
quoteTableName
(
'schema.table'
));
$this
->
assertEquals
(
'{{table}}'
,
$connection
->
quoteTableName
(
'{{table}}'
));
$this
->
assertEquals
(
'(table)'
,
$connection
->
quoteTableName
(
'(table)'
));
}
...
...
@@ -39,8 +39,8 @@ class SqliteConnectionTest extends ConnectionTest
public
function
testQuoteColumnName
()
{
$connection
=
$this
->
getConnection
(
false
);
$this
->
assertEquals
(
'
"column"
'
,
$connection
->
quoteColumnName
(
'column'
));
$this
->
assertEquals
(
"
'table'.
\"
column
\"
"
,
$connection
->
quoteColumnName
(
'table.column'
));
$this
->
assertEquals
(
'
`column`
'
,
$connection
->
quoteColumnName
(
'column'
));
$this
->
assertEquals
(
"
`table`.`column`
"
,
$connection
->
quoteColumnName
(
'table.column'
));
$this
->
assertEquals
(
'[[column]]'
,
$connection
->
quoteColumnName
(
'[[column]]'
));
$this
->
assertEquals
(
'{{column}}'
,
$connection
->
quoteColumnName
(
'{{column}}'
));
$this
->
assertEquals
(
'(column)'
,
$connection
->
quoteColumnName
(
'(column)'
));
...
...
tests/unit/framework/db/sqlite/SqliteQueryBuilderTest.php
View file @
0390a998
...
...
@@ -85,6 +85,6 @@ class SqliteQueryBuilderTest extends QueryBuilderTest
public
function
testBatchInsert
()
{
$sql
=
$this
->
getQueryBuilder
()
->
batchInsert
(
'{{tbl_customer}} t'
,
[
't.id'
,
't.name'
],
array
(
array
(
1
,
'a'
),
array
(
2
,
'b'
)));
$this
->
assertEquals
(
"INSERT INTO
{
{tbl_customer}
}
t (
't'.
\"
id
\"
, 't'.
\"
name
\"
) SELECT 1, 'a' UNION ALL 2, 'b'"
,
$sql
);
$this
->
assertEquals
(
"INSERT INTO
{
{tbl_customer}
}
t (
`t`.`id`, `t`.`name`
) SELECT 1, 'a' UNION ALL 2, 'b'"
,
$sql
);
}
}
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