Database access component for the Zend Framework.
0
votes
0answers
11 views
Doctrine Mapping Two Tables and Columns
I want to map tow column from different table in DOCTRINE in my ZEND APPLICATION.
Table:1: Country
Table:2: Search
Search will have 'IND' in my 'country_list' colunm and in 'Country' Table ...
0
votes
1answer
23 views
Zend Framework 2 - How to access DB adapter in controller
Despite several hits on Google I still couldn't find out how to access the db adapter I configured in my global.php in any controller.
I found this:
$db = ...
0
votes
1answer
26 views
Fetch image path from mysql and show image on web page
<select id="availableFruits" name="availableFruits" multiple size=7 style="width:auto;float:left;" >
<?php $fruitList=$this->fruitList;
foreach ($fruitList ...
1
vote
1answer
58 views
zf2 - Zend\Db - What do Model, Entity, Hydrator, Mapper, TableGateway do and how it all links together?
Please explain what
Model
Entity
TableGateway
Mapper
Hydrator
do and how it all works together in zf2 application.
please don't give links to blogs articles. I need simple big picture ...
2
votes
1answer
46 views
Can I set a query timeout when using Zend_Db_Adapter_Pdo_Mssql?
We have a PHP application (hosted on Linux) which uses Zend Framework components to query a Microsoft SQL Server 2008 database. The PHP application is hosted in a datacenter with reliable internet ...
2
votes
2answers
55 views
Convert Zend\Db\ResultSet\HydratingResultSet to Array of Objects
In my Mapper class I'm extending AbstractDbMapper from ZfcBase to fetch rows from the database. A simple example would be code like this:
class MyMapper extends AbstractDbMapper
{
//...
...
0
votes
1answer
15 views
How to use zend_db_select to update when there is two clause
I want to update an entry in the table when 2 conditions are met.
I have this statement, but it is only for one where condition
$this->dbo->update('mytable', $data, ...
0
votes
1answer
22 views
use zend db with whare and orwhere when orwhere are in ()
hi i want create this sql in zend framework dbclass
selec * from table where type = 2 AND (name LIKE '%4%' OR name LIKE '%5%')
how i can do this with zend where and orwhere?
using normal mode ...
0
votes
1answer
28 views
Zend Framework 2: Getting an ordered SQL call
I've been trying to get an order ASC/DESC call for a field (let's say craeted), and I can't seem to figure out how to do it in ZF2.
Where am I going wrong..?
namespace Todo\Model;
class TodoTable ...
0
votes
3answers
49 views
How to log database errors in zend framework
I am using zend framework 1.12 for my project. I want to catch all types of fatal errors and send them to an email address for quick fix. I have written the below mentioned code in Bootstrap.php file ...
0
votes
0answers
37 views
How to use Zend_Validate twice
I'm using Zend_Validate_Db_NoRecordExists and I would like to validate my Zend_Form against two fields in DB, sample code:
$phone_1 = new Zend_Form_Element_Text('phone_1');
...
0
votes
0answers
38 views
Exception message - Zend_Auth_Adapter_DbTable
I am working with a zend application and when I try to login the application I am getting the following error:
The supplied parameters to Zend_Auth_Adapter_DbTable failed to produce a valid sql ...
0
votes
1answer
27 views
Update multiple row in Zend
I am trying to figure out how to update multiple row in one update() in zend framework.
I have an array of IDs named ids and I would like to update one field of all the rows of these ids.
I tried to ...
0
votes
0answers
32 views
Working with Zend_Queue 1.12
Hi I am working with Zend Framework 1.12.0 I found this version of zend supports Zend_Queue.
So I tried to test a sample of queue which was provided in Zend Doc
Ref:1
...
0
votes
1answer
33 views
Zend_DB subselect / subquery how to?
I have this raw sql statement which I am trying to execute through Zend_DB.
$sql = 'SELECT relocationaction.id, relocationaction.vehicle, relocationaction.start, relocationaction.end, ...
0
votes
0answers
19 views
Zend DB + HTML inside Where
I have some problem with a query, i research across the internet and i couldn't found the answer.
I have the following query
Zend_Db_Table_Abstract
$traits = $this->select()
...
0
votes
0answers
15 views
Zend is adding an extra column to my db2 select statement
I am working on a complex db2 select query, at least it is complex for me.
Here is the query as it is coded in Zend(I am using Zend 1.11):
$subQry5 = $this->select()
...
2
votes
1answer
89 views
Mysql rand() function in Zend framework 2
In zend framework 1, we had used mysql rand() function like below or using zend_db_expr(). I have tried this in ZF2, but this is not working. Somebody please help me to use this in Zend Framework 2
...
2
votes
0answers
46 views
How can I turn ZF ->joinLeft()s into a Subquery?
How would i convert below query to sub query?
I don't want to use JOINS I want to do same through sub query. i-e I need three subqueries out of the three joins. How it would be possible for below ...
0
votes
1answer
31 views
Parameterizing MySQL queries IN clause
I am using Zend's convenience methods for DB calls fetchAll. This, as the knowledgeable ones should know is a function that allows parameterization of queries. For instance, the query could be:
...
2
votes
1answer
36 views
PHP Zend_Db_Statement_DB2 returns null for static field
I am building my SQL statement through a PHP API, and then passing it through a module that connects to our database (DB2).
My issue: a static field (sales_type) is returning null when passing the ...
0
votes
1answer
45 views
Missing /Zend/Db/Adapter/Pdo/Mysql.php
So after some long struggling I finaly have the ZendFramework running. Now I'm trying to get it working with my database, but my error file is telling me the following:
PHP Warning: ...
0
votes
1answer
39 views
Add Coun Expression in Join to Magento Collection
Hi guys I'm having a hard time adding a join in Magento, well I know I can do $collection->getSelect()->join but I need to add a Count() expression in it.
What I'm concretly trying to achieve ...
0
votes
1answer
43 views
Saving Model to multiple tables
maybe on of you can help my with a little problem im dealing with right now.
I have a simple form with: Loginname, Loginpassword, Name, Firstname, Age. Now i want to save these information in two ...
0
votes
1answer
11 views
Accessing remote server using Zend_Db_Table
My current system is using Zend Framework 1, and works very well with our local MySQL server. However, I now need to access another server for importing/exporting. I'm using a class extended from ...
1
vote
2answers
75 views
Zend 2.1: Is it possible to do a multiple schema join via Db>Sql>Select
I'm pretty new to Zend and having a go with Zend Select abstraction. I have hit a bit of a problem when trying to create a query which joins another table from a different schema.
The mySql query ...
1
vote
1answer
74 views
How to set sql_mode in Zend Framework 2?
I'm currently having an issue with pagination in Zend Framework 2.
This code
public function findAllByCriteria(CourseSearchInput $input) {
$concatDelimiter = self::CONCAT_DELIMITER;
$select ...
0
votes
1answer
194 views
ZF2 + Zend\Db\Sql\Insert + ON DUPLICATE KEY UPDATE
I would like to insert some data using Zend\Db\Sql\Insert with the option ON DUPLICATE KEY UPDATE
Actually I use this kind of query:
INSERT INTO `user_data` (`user_id`, `category`, `value`)
VALUES ...
1
vote
2answers
132 views
How to set Array Object Prototype for a Result Set of an Sql statement created with Sql object in ZF2
I want to use the Sql object in my model to query the database. I have an entity object lets say Person and person object has exchangeArray() method. I want to set this Person object to be an Array ...
0
votes
2answers
71 views
How to apply OR operator in zend2 select queryy
I am so far able to apply AND and LIKE in zend2 SELECT query, but cannot figure out how to apply OR operator. This is my query `
$this->table = $data['table'];
$select = new Select();
...
0
votes
1answer
82 views
Zend Framework ZEND_QUEUE implementation
I am new to ZEND and I am working on the version (ZEND 1.11.1) I am trying to implement the ZEND_QUEUE in my zend application and there is no proper tutorial for me. All through I am trying to ...
3
votes
3answers
73 views
Zend DB select only 1 table with multiple joins
I'm using Zend DB to generate a query using the following code:
$table->select()
->setIntegrityCheck(false) //required for multi-table join
->from('modules')
...
0
votes
2answers
56 views
How can disable quote join Zend db
I've sql query
select * from table1
left join (values (4),(1800),(103500)) AS "filter (id) on table1.id=filter.id
By default Zend_Db_Select table quoted.
For example:
...
1
vote
2answers
60 views
output array in right way
I use ZF1, and i need to put in title this if:
title="<?php echo isset($this->region['klu']) ? $this->region['klu'] : 'region name for klu'?>"
where klu - is a data in r_alias row in ...
1
vote
2answers
117 views
zf2 make a join between two different databases
I am trying to make a join between two tables placed in different databases with Zend Framework 2.
The first table is called users and is stored in the database admin
The second table is called ...
1
vote
4answers
52 views
Select Command in zend framework
Im am new in Zend Framework.
I have this structure of codes .
DBTable
class Application_Model_DbTable_Employee extends Zend_Db_Table_Abstract
{
protected $_name = 'tab_employee';
}
Model
...
1
vote
1answer
120 views
Where do Zend\Db\ResultSet\ResultSet objects store the retrieved data?
In a Zend Framework application, that is built pretty similar to the album application from the ZF2 Getting Started tutorial, I use a ResultSet object to transport the data from the model over the ...
0
votes
1answer
33 views
mysql Error Code : 1052 with Zend_Db
i have 2 tables that are
1 = "issue_history"
2 = "issue_history_status"
"issue_history_id" is column name which is in both tables.
PK in "issue_history" & FK in "issue_history_status"
this ...
0
votes
0answers
37 views
Zend_Db remove backslashes from json string
I'm trying to save json string into DB through Zend_Db but if string contain unicode escaped chars like '\u0442\u0435\u0441\u0442' it's convert to 'u0442u0435u0441u0442'.
What's wrong?
Code:
$db = ...
0
votes
1answer
21 views
how can i fetch a column without table name associated with it in Zend framework?
i am unable to separte the table with the field from the below query. every query becomes
table_name.field_name but i want only field_name as i want to output dummy string from the sql but i am unable ...
0
votes
2answers
52 views
Free PDO statement result from memory in loop
I am using the following code in an application based on ZF1:
$select = $db->select()->from('table', array('id', 'int', 'float'))->limit(10000, (($i - 1) * 10000));
$data = ...
1
vote
2answers
62 views
Model and Db-Table Zend Framework
I wanted to know is more correct to create a directly db-adapter or create a model that interfaces with db-adapter.
Make the classic operations crud with db-adapter, or you can create a model that ...
0
votes
1answer
61 views
Query 2 tables with one field linked to 2 different values
I'm trying to make a SQL query and I have some problems with it.
CREATE table entries (
id_entry INT PRIMARY KEY,
);
CREATE table entry_date (
entry_date_id INT PRIMARY KEY,
entry_id INT,
...
0
votes
1answer
42 views
Issue in the Mapper Code in Zend Frame Work
Notice: Undefined variable: entryMessage in /var/www/Employee/application/models/EmployeeMapper.php on line 34 Fatal error: Call to a member function setEmployeeId() on a non-object in ...
0
votes
1answer
53 views
(Why) Is Zend\Db\ResultSet a TableGateway Feature?
The Zend Framework 2 documentation for the Zend\Db\TableGateway\TableGateway says, that:
The [Zend\Db\TableGateway\TableGateway] constructor can take Features in 3 different forms: as a single ...
0
votes
2answers
131 views
like in where query in zend framework 2
I am using the Zend framework 2.x and facing the problem as I have search a lot.
I want to use the like clause in query but each time gives the errors:
Here is my efforts:
$sql = new ...
0
votes
1answer
54 views
Zend.DB: How do I group “orWhere()” clauses?
I've got a little task I've gotta handle, and while I could just use the query() function write out the SQL by hand, I'm really interested in learning about this.
NOTE: I'm pretty green on ZF ...
0
votes
0answers
18 views
How to pass “--comment” in mysql configuration through Zend_db::factory in php?
If MySql clients pass the parameter --comments, the comments that are passed along with the queries show up in the query logs. This helps to quickly trace the origin of query in application code.
Ex: ...
0
votes
0answers
52 views
zend db Mysqli fetchObject
i try to implement a simple code like below with Zend DB (using Mysqli adapter).
For example:
i have 10 posts with several attachments.
i want to retrieve all the post and the attachments of each ...
0
votes
1answer
30 views
How to simulate “not in” with a join in Zend framework?
I have two relation table "demande" and "reponse" which are linked and I'd like to retrieve all the lines of "demande" not in "reponse".
I try this with a join :
$select = new Select ();
...






