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
e9fcde32
Commit
e9fcde32
authored
Nov 24, 2013
by
John Was
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support for batch insert in sqlite older than 3.7.11
parent
337b1b08
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
QueryBuilder.php
framework/yii/db/sqlite/QueryBuilder.php
+47
-0
SqliteQueryBuilderTest.php
tests/unit/framework/db/sqlite/SqliteQueryBuilderTest.php
+6
-0
No files found.
framework/yii/db/sqlite/QueryBuilder.php
View file @
e9fcde32
...
...
@@ -42,6 +42,53 @@ class QueryBuilder extends \yii\db\QueryBuilder
];
/**
* Generates a batch INSERT SQL statement.
* For example,
*
* ~~~
* $connection->createCommand()->batchInsert('tbl_user', ['name', 'age'], [
* ['Tom', 30],
* ['Jane', 20],
* ['Linda', 25],
* ])->execute();
* ~~~
*
* Note that the values in each row must match the corresponding column names.
*
* @param string $table the table that new rows will be inserted into.
* @param array $columns the column names
* @param array $rows the rows to be batch inserted into the table
* @return string the batch INSERT SQL statement
*/
public
function
batchInsert
(
$table
,
$columns
,
$rows
)
{
if
((
$tableSchema
=
$this
->
db
->
getTableSchema
(
$table
))
!==
null
)
{
$columnSchemas
=
$tableSchema
->
columns
;
}
else
{
$columnSchemas
=
[];
}
foreach
(
$columns
as
$i
=>
$name
)
{
$columns
[
$i
]
=
$this
->
db
->
quoteColumnName
(
$name
);
}
$values
=
[];
foreach
(
$rows
as
$row
)
{
$vs
=
[];
foreach
(
$row
as
$i
=>
$value
)
{
if
(
!
is_array
(
$value
)
&&
isset
(
$columnSchemas
[
$columns
[
$i
]]))
{
$value
=
$columnSchemas
[
$columns
[
$i
]]
->
typecast
(
$value
);
}
$vs
[]
=
is_string
(
$value
)
?
$this
->
db
->
quoteValue
(
$value
)
:
$value
;
}
$values
[]
=
implode
(
', '
,
$vs
);
}
return
'INSERT INTO '
.
$this
->
db
->
quoteTableName
(
$table
)
.
' ('
.
implode
(
', '
,
$columns
)
.
') SELECT '
.
implode
(
' UNION ALL '
,
$values
);
}
/**
* Creates a SQL statement for resetting the sequence value of a table's primary key.
* The sequence will be reset such that the primary key of the next new row inserted
* will have the specified value or 1.
...
...
tests/unit/framework/db/sqlite/SqliteQueryBuilderTest.php
View file @
e9fcde32
...
...
@@ -81,4 +81,10 @@ class SqliteQueryBuilderTest extends QueryBuilderTest
$this
->
setExpectedException
(
'yii\base\NotSupportedException'
);
parent
::
testAddDropPrimaryKey
();
}
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
);
}
}
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