问题标签 [dbal]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
217 浏览

php - doctrine dbal count number of querys executed

I have build my own mvc framework and i'm using Doctrine DBAL 2.3 as database layer. At the moment i'm working on a profiler for this framework. One of the things i want to put in the profiler is the number of querys that were executed on the current page.

My question is: can i get the number of querys from Doctrine? Yes? How can i do this? No? Is there a way to build something custom that works with Doctrine and does the trick?

I hope there is someone that can answer my question, thank you.

0 投票
1 回答
1550 浏览

php - Symfony2 Doctrine DBAL Wrapper 问题

我正在尝试为 DBAL 连接创建一个自定义包装器并正确设置了 config.yml 文件,

但是我收到以下错误:

但是我的课程正在扩展\Doctrine\DBAL\Connection

有任何想法吗?

0 投票
2 回答
3709 浏览

php - 在 dbal 上限制 sql 结果

我在 Symfony2 上使用 dbal 从我的表中检索一些信息:

仅当我添加最后一部分(LIMIT ....)时才出现错误,这让我认为我无法限制 sql 查询内的结果,但在外部使用某种命令。我该如何解决这个问题?

错误:

0 投票
1 回答
49 浏览

php - 是否可以在 DBAL symfony2 中声明数据库连接的公共对象,即 $conn

我正在研究 DBAL symfony2。我以这种方式使用 DBAL 建立了数据库连接 public function demoAction() { $conn = $this->get('database_connection'); 我被卡住了@有什么方法可以声明全局对象/常量以进行连接,而不是在每个动作上调用它。

谢谢

0 投票
1 回答
247 浏览

symfony - 没有 Symfony2 的 Doctrine2 多个数据库?

我知道在 Symfony2 中使用 Doctrinebundle 可以在 Doctrine 下实例化多个数据库连接......

我很好奇如果您使用的是 PURELY Doctrine 是否是这种情况?,我已经通过 Composer 设置了 Doctrine 像这样......

一直在寻找我的ConnectionFactory班级,但在任何地方都没有看到?我需要使用 Symfony2 来执行此操作吗?

我应该从 DoctrineBundle 下载ConnectionFactory.php并将其包含在我的 DBAL 文件夹中吗?身份证?

0 投票
1 回答
428 浏览

symfony - Symfony2 Doctrine 捆绑构造函数,他们要求的 $typesconfig 要求是什么?

嘿伙计们,我正在尝试将ConnectionFactory类从 Symfony2 Doctrine2 捆绑包移植回 Doctrine2 的库存安装,但遇到了障碍。构造函数需要第 36 行的初始化数组。我在这里$typesconfig短暂地用 FOS 打开了一张票,但被告知这与 mime.magic 无关。他们没有继续解释变量实际上是什么或为什么需要它。$typesconfig

为了移植这个,我需要了解$typesconfig数组是什么以及它包含什么,有人可以告诉我这个构造函数变量中有什么以便我可以完成移植这个类吗?

0 投票
1 回答
2419 浏览

php - Doctrine DBAL 可以批量插入吗?

是否可以使用 Doctrine DBAL 对 SQLite DB 进行批量插入?即使以下更有效:

0 投票
2 回答
3124 浏览

database - 从 Symfony2 中的实体到数据库的 DBAL 连接

我创建了这个实体:

如何从它连接到数据库?

我从这个控制器调用这个实体:

0 投票
1 回答
980 浏览

doctrine-orm - PHP ZF2 Doctrine edit record fails with empty data

Since we resolved my last problem (special thanks to ChandlerTi) I've been trying to update my code, to edit and safely delete database records using ZF2 and Doctrine. Now I've stuck on the edit function related problem. When i click on the edit button form opens and is correctly hydrated with record data. Since then, everything is okay. But on save button i receive an error:

Ofcourse, thats correct - description should not be null. Bu it is'nt! Ive made a trap to catch POST data sent to sript. They looks to be correct:

All the required fields are filled. Description to. Where is the problem? The only difference between this POST data and the POST generated by the add script (that works correctly) is that add scipt uses PHPSESSID var. And one more thing: my edit code is the same that add code:

IncidentController.php

I completly dont know what is the difference here between add and edit. A why edit action uses SQL INSERT statement instead of UPDATE. Thanks for any help Smok.

0 投票
3 回答
312 浏览

symfony - Symfony2-Doctrine -- 从 DoctrineArray 中使用 WHERE 选择数据

在一个实体中,我有一个如下所示的字段:

和查询生成器

所以在数据库字段类别中是 Doctrine2 Array。我想使用 QueryBuilder 从数据库中选择记录。我的问题是,我该如何使用 WHERE 子句来检查该数组中的字段?