Name |
Last commit
|
Last update |
---|---|---|
apps | ||
build | ||
docs | ||
extensions | ||
framework | ||
tests | ||
.gitattributes | ||
.gitignore | ||
.scrutinizer.yml | ||
.travis.yml | ||
CONTRIBUTING.md | ||
LICENSE.md | ||
README.md | ||
composer.json | ||
phpunit.xml.dist |
Fix batchInsert bug in oci. default batchInsert sql is ``` insert into tableName(col1, col2, col3...) value(`col11`, `col12`,`col13`.... ),(`col21`, `col22`,`col23`.... ); ``` which is illegal in oracle db. Change it to ``` insert into tableName(col1, col2, col3...) select 'col11', 'col12', 'col13' from dual union select 'col21', 'col22', 'col23' from dual union select 'col31', 'col32', 'col33' from dual; ```
Name |
Last commit
|
Last update |
---|---|---|
apps | Loading commit data... | |
build | Loading commit data... | |
docs | Loading commit data... | |
extensions | Loading commit data... | |
framework | Loading commit data... | |
tests | Loading commit data... | |
.gitattributes | Loading commit data... | |
.gitignore | Loading commit data... | |
.scrutinizer.yml | Loading commit data... | |
.travis.yml | Loading commit data... | |
CONTRIBUTING.md | Loading commit data... | |
LICENSE.md | Loading commit data... | |
README.md | Loading commit data... | |
composer.json | Loading commit data... | |
phpunit.xml.dist | Loading commit data... |