The Wayback Machine - https://web.archive.org/web/20200612084240/https://github.com/topics/pdo
Skip to content
#

pdo

Here are 566 public repositories matching this topic...

Tinywan
Tinywan commented Jan 5, 2017

ThinkPHP 3.2 模板中的Angularjs 的变量"{{first}}" 无法被解析, 模板解析冲突,例如在angularjs 的变量"{{first}}" 无法被解析, 模板解析冲突,例如在angularjs 的变量"{{first}}",则TP模板不会解析该变量的
所以的在配置模板中修改 模板引擎普通标签开始标记

修改前:
'TMPL_L_DELIM' => '{', // 模板引擎普通标签开始标记
'TMPL_R_DELIM' => '>', // 模板引擎普通标签结束标记
修改后:
'TMPL_L_DELIM' => '<{', // 模板引擎普通标签开始标记
'TMPL_R_DELIM' => '}>', // 模板引擎普通标签结束标记

collmomo
collmomo commented Mar 23, 2016

PHP 7.0

                    ->setTable('user')
                    ->setColumns(['userId' => 'user_id', 'username' => 'name', 'email' => 'email']);
echo $builder->write($query);
`

``` [Symfony\Component\Debug\Exception\FatalThrowableError]
  Type error: Argument 1 passed to NilPortugues\Sql\QueryBuilder\Builder\GenericBuilder::write() must implement interface NilPo
database
TonnyJe
TonnyJe commented Apr 26, 2020

Version: ^3.0

Bug Description

Wrong SQL generation for joining tables with DELETE.

Steps To Reproduce

This code

$this->database->table('is_document_item')
                ->where('document.code', 202750006)
                ->where('amount', 0)
                ->fetchAll();

generates this query:

SELECT `is_document_item`.`id` 
FROM `is_document_item` 
LE

Improve this page

Add a description, image, and links to the pdo topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the pdo topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.