Tagged Questions
0
votes
0answers
9 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
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 ...
2
votes
2answers
52 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
14 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
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()
...
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:
...
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
42 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
78 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
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
...
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
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
32 views
Zend Db update and delete method and quoting
In documenation in
Since the table update() method proxies to the database adapter update() method, the second argument can be an array of SQL expressions. The expressions are combined as Boolean ...
1
vote
1answer
78 views
Join in Zend Framework using alias
How to do the query:
$name = $this->_dbTable->info('name');
$result = $this->_dbTable->select()->from($name)->setIntegrityCheck(false);
$result->join(array('t' => ...
0
votes
1answer
83 views
How to get specific column only from related table?
I have query:
$sql = new Sql($this->tableGateway->getAdapter());
$select = $sql->select();
$select->from('table_1')
->join('table_2', 'table_2_se_id = table_2.se_id
...
0
votes
1answer
123 views
Zend_Db_Table_Row::save() doesn't update the table
I am working with Zend Framework 1.12.1
I am trying to use a "save" method on a row from Zend_Db_Table_Abstract. As I understand this method should automatically decide whether to save or update a ...
1
vote
1answer
164 views
Using join in zend social engine 4 widget
I am trying to use "join" in a query while developing a widget that is within a module for Social Engine 4. I'm working in Dreamweaver. I am trying to replace this working code:
//creates query to ...
1
vote
1answer
84 views
jQuery Load Function inside Zend Partials
How would I use the load function and append data from a partial view using jQuery and the Zend Framework? Essentially, when I click "Show More", the data from my view partial (the word hey) gets ...
0
votes
1answer
66 views
SetIntegrityCheck from DB Adapter in Zend
Hi there I want to use join in zend db select. I know that setintegritycheck() is importants in joins. I know how to implement it when I am having a model object like
$select = $this->select();
...
0
votes
1answer
35 views
zend : init() not getting called when i am writting __constructor() in my model class
I have written init() function in my db model class and i am using multi db zend functionality.
in my init() i am fetching my db adapters and then my default adapter gets set as a default adapter and ...
0
votes
1answer
92 views
Zend_Form display forms from DB table rows
I'd like to build a dynamic FORM according to DB Table records.
It'a room reservation module.
Hotel has several room types with descriptions.
When booking a hotel user should see form like:
-- ...
0
votes
2answers
88 views
Select Zend Db with array
What's the correct syntax to select multiple rows through an array using Zend ? So basically fetch all the data that has name $a OR $b etc..depending on number of array elements. I can't figure it ...
0
votes
1answer
49 views
Zend DbTable case insensitive
I have a login system for my webapp that works well using the Zend auth adapter but the problem is I want the email to be case insensitive when a user logs in. I am using Oracle as the back end DB and ...
0
votes
0answers
133 views
Zend DB Union Select in subquery returns more than 1 row
I have to tables:
Table A stores userid, -name ...
Table B stores userid, membername ...
I need to sort the results of query according to the result of the following:
I'm trying to select the ...
1
vote
1answer
92 views
MYSql - Using correlated subquery in Zend Db
I'm trying to construct a working MySql query with a correlated subquery in zend_db_select (ZF 1.12) to use that in Zend_Paginator_Adapter. The working query is as follows:
SELECT f.*, (SELECT ...
0
votes
0answers
104 views
Zend_Db - define not done before fetch or execute and fetch
I have a send_mail() procedure in Oracle that handles all the emails.
I can call that procedure from a Zend query with no errors $db->query("blah blah"); but
when I use a $stmt = ...
0
votes
1answer
87 views
Zend Framwork Session on Internet Explorer [duplicate]
Still couldn't make it works after post this link:
Zend framework session lost
I have this Sign up form that allow users to register and redirect them right away to their pages. All work great on ...
0
votes
1answer
73 views
Zend Framework create a sql function
I would like to create a sql query in Zend Framework in the Abstract.php or in model? but I have a hard time figure out how to do it. I am new in zend framework.
The query that I want to create looks ...
0
votes
2answers
41 views
How do I ignore the created column on a Zend_DB table save?
how would I ignore having Zend_DB save() from trying to fill out a created column? I do not need that column for a certain model.
0
votes
2answers
304 views
Zend error SQLSTATE[HY000] [1045]
I am having trouble with zend framework and connection with database, I'm trying to create a login, the table is created, and the code apparently is fine, but gives me this:
An error occurred
...
0
votes
1answer
68 views
Zend Framework DB delete method strips values
Im trying to delete record from database depending where conditions. The query is pretty simple, but still Im getting strange results. What Im trying to do in ZF:
$where = array(
...
0
votes
1answer
124 views
PHP PDO error in Zend framework after a migration of a MSSQL SERVER with an error Connection
After a planned migration of the old MSSQL Server professional to the last MSSQL Server Express version, I have a problem with the connection with an old PHP project that use Zend framework to connect ...
0
votes
1answer
112 views
mySQL statement in Zend Framework DB_TABLE
I'd like to know how to properly write mySQL statement using ZEND in this case:
SELECT * FROM `users` WHERE role_id = 2 AND status = 2 AND bddate BETWEEN '1988-05-07' AND '1991-01-01' ORDER BY ...
-1
votes
3answers
356 views
Zend framework current method to get single row
i'm new to zend framework, in this simple function i want to get a single 'post' and then i want to find all the comments in the related table
public function getPost($idPost)
{
$db= ...

