The zend-db-table tag has no wiki summary.
0
votes
1answer
27 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
2answers
22 views
How to get table foreign keys in Zend Framework?
I can get table columns with information about columns types by writting:
$table = new Zend_Db_Table('schema.table_name');
$info = $table->info();
There is information about Primary key, but ...
1
vote
1answer
23 views
how to create a Zend_Db_Table_Select through a string query php
I have been taking a look, for if there any way to create a Zend_Db_Table_Select or Zend_Db_Select instance with a literal sql query. I mean, I've got a complex query and I want through this query ...
0
votes
1answer
46 views
Zend DbTable get rows from referenced table from other module
I am currently working an a Zend framework 1.12 based project. I use different modules to keep things separated as good as possible. My data is stored in a mysql database so I set up some db table ...
0
votes
1answer
75 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 ...
0
votes
2answers
55 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:
...
0
votes
1answer
27 views
What happens if you call refresh() on Zend_Db_Table_Row_Abstract after the row has been deleted from the db?
I'm using Zend Framework version 1.x
The documentation for the refresh method of Zend_Db_Table_Row_Abstract says only:
Refreshes properties from the database.
My question is what this method will ...
1
vote
2answers
114 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
2answers
60 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
0answers
436 views
zf2 form: populate select field with data coming from database
I'm learning zf2 and I'm facing a problem involving 2 (eventually more) modules working together. Note, I've carefully read this post (and the related one) which helped me a lot. I'm going to explain ...
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
76 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
52 views
Zend Authentication where user role stored in separate db table
I have a User table where userID, username and password are stored and a Role table which contains user role . To link these two tables, I have a table (user_role) which contains userID and roleID. ...
0
votes
1answer
121 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
104 views
Zend update/insert (Zend_Db_Table_Abstract) doesn't work
I've got a problem with insert and update queries in Zend (Select is ok).
Definition of table:
class Application_Model_DbTable_Kpr1Data extends Zend_Db_Table_Abstract
{
protected $_name = ...
0
votes
0answers
29 views
Zend_Db_Table Relationships vs other zend db method
I read about zend_db_table relationship and see it is very good for insert and update value. however, I want to compare the advancetages of it with other method had been introduced in zend_db. any ...
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
0answers
31 views
Zend Dependant Tables issue
I'm having problems getting my dependancies to work in Zend.
I have a 2 classes as below -
class Application_Model_DbTable_Content extends Zend_Db_Table_Abstract
{
protected $_name = 'content';
...
0
votes
1answer
100 views
What is the proper way of implementing Table Data Gateway pattern in Zend Framework 1.x?
According to Zend quick start guide I need three classes (A model, A mapper class and a table gateway class) to implement the Table Data Gateway pattern. But is this a good approach?
Right now this ...
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
40 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
1answer
92 views
how to write this query using DATE_FORMAT using Zend Framework?
Basically, I want a news page with Archives list in the side column based on the month and year.. for example June 2012. The table is named 'news', with columns news_id, news_title, news_entry, ...
0
votes
1answer
55 views
I want to use an if in where clause in zend framework
The following is part of my query
where
if(teler.arrange ="Y",(teler.id_to IN ('1940')),0) GROUP BYto,
How will I have this in a Zend query which is currently like this
...
-3
votes
1answer
1k views
Zend framework 2 - how do i connect to database and retrieve query results?
I have ZF2 tried following, but it does not give any query results with ZF1 works, ZF2 not workings. Is ZF2 database adapters incomplete, left as bug not resolved by ZF2 itself? Cause documentation ...
-1
votes
3answers
347 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= ...
0
votes
2answers
149 views
configuring zend aplication for postgres
I'm pretty new with Zend and absolutely new with postgres, but i was strongly recomended to use it in my new project. I always used Application_Model_DbTable to work with database, but i used MySql. I ...
1
vote
2answers
197 views
Zend framework queries and input validation
i'm new to zend framework (1.12), in my model, in my zend-db-table i want to validate the input (to avoid sql injection) and i want to do this query:
`SELECT id FROM friendships WHERE (user1= $user1 ...
0
votes
1answer
266 views
ZendFramework2 AbstractTableGateway getSql
I got a ZF2 project with 2 Models PosTable/TopTable which extend AbstractTableGateway.
I want to Paginate results from those Tables so i have a Pagination function in both of them.
this is what the ...
1
vote
1answer
25 views
Ordianary query to Zend formate Query?
manually i constructed a query... i'm facing struggle to construct in zend,
e.i select inside select
these is my query,
SELECT * FROM (
SELECT t1.eventId,t1.start_date,t1.end_date, COUNT(*) pos ...
1
vote
1answer
249 views
MasterSlaveFeature How-To
I currently have my Db Models using AbstractTableGateway and all my select/insert/update/delete queries are working just fine. But now I would like to add the MasterSlaveFeature and I'm a bit confused ...
0
votes
2answers
883 views
Zend Framework DB table fetch array
is it possible to fetch array from db, taking one column as array key and other column as array value?
My current code:
$table = new Zend_Db_Table('translations');
$where = ...
0
votes
1answer
43 views
Zend Framework Class 'Table' not found error
I have basic zend framework installation. I create new db table models/tables/User.php
<?php
require_once 'Zend/Db/Table/Abstract.php';
class UserTable extends Zend_Db_Table_Abstract
{
...
0
votes
0answers
171 views
Delete row from two table using zend framework
I want to delete the row using join in zend framework
this is my select query
$firstQuery = $connection->select()
->from(array("t" => $optionTypeTitle))
...
3
votes
2answers
62 views
Zend_db only gives a error in my main module and only when I use 'woningen' as table name
This is the code I use to update/insert data in my database.
public function saveItem($post, $table)
{
unset($post['submit']);
$this->_table = new Zend_Db_Table($table); exit;
...
0
votes
1answer
69 views
How to call a function of db table row class from a controller in zend framework?
I am trying to call a function exists in my dbtable row class ie Test.php.and I want to call it from my controller. My dbtable class is Tests.
$obj=new Model_Test();
$obj->testFunction();
but ...
0
votes
1answer
84 views
Using table aliasing with zend_db_table objects
Suppose I have a table:
$someTable = new Zend_Db_Table ('sometable');
I know I can build a query using the table's literal name.
$sel = $someTable -> select ()
-> from ...
0
votes
1answer
155 views
Zend DB Table and Model one to one
I have class that representing model of user with foreign key with is id of picture .
class Model_User extends Model_AbstractEntity
{
protected $u_id;
protected $u_email;
protected ...
0
votes
0answers
255 views
zend framework 2 Authentication with Mysqli driver fail
I have followed the zend instructions for implement my web Authentication using a database table.
When render the page, the following exceptions appears:
...
2
votes
1answer
685 views
zend framework 2 autentification using DbTable failure
I have followed the zend instructions for implement my web Authentication using a database table.
It's exactly the same code, but when render the page, the following exceptions appears:
...
0
votes
2answers
318 views
ZendFramework - Why is $this->fetchRow() failing? [closed]
Why this database query failing? in my CentOS.
Error/Exception:
"Notice: Undefined variable: table in /var/www/html/-manager/application/controllers/IndexController.php on line 37 Fatal error: Call ...
0
votes
1answer
140 views
ZendFramework - How to get Page ID Name
I have a table *sitepage_manageadmins* which contain: " user_id, page_id ".
There is another table *sitepage_pages* which contain " page_id, title ".
Im trying to render as dropdown ( select list ) ...
0
votes
3answers
418 views
zend framework subquery
I am using zend framework 1.12. I have following query to run.
"SELECT name,(select count(*) from org_quote_template_items where org_quote_template_items.quote_template_id = ...
0
votes
2answers
241 views
Zend_Db_Table Base table or view not found
I have taken over an application written with the use of the Zend MVC and Zend_Db_Table for DB access. I am trying to add a new table but get the error:
Base table or view not found: 1146 Table ...
0
votes
2answers
147 views
Zend_Db_Table and db->select in controller or model
I'm a little bit confused with Zend. Many examples show the usage of Zend_db_Table in the controller. But from what I've learn about MVC, anything about DB should be in the model. Now that Zend is ...
1
vote
2answers
493 views
using zend test dbadapter with zend db table abstract
Has anyone been able to to use Zend_Test_DbAdapter with Zend_Db_Table_Abstract?
I'm trying to test a Model I created that extends Zend_Db_Table_Abstract and I get an exception regarding the primary ...
0
votes
2answers
212 views
Is it possible to profile Zend_Table queries?
I'm looking for a way to profile queries which are performed internally by Zend_Table.
For example, after you finish Quickstart course, how to profile all the queries that are performed ?
I've tried ...
1
vote
2answers
80 views
How to change the database field orders in zend
In zend project I fetch data from the database and show in a table. It shows data in the same order as stored in the database. But I want to show the fileds in diffeent order than in database order. ...
1
vote
1answer
77 views
Zend Relationship : How to get a property from a dependant table on view?
I use this synthax to get a property from dependent table on my view template:
<?php echo $row->findParentRow('Apimail_Model_DbTable_Campagne')->title ?>
It's work but I want to know if ...
1
vote
1answer
161 views
Zend recursive table dependencies data retrival
I have three tables, incidents, incident_properties and property_types.
What I would like to do is:
Query the incidents table for one row
Retreive all its properties (which are key-value rows and a ...
0
votes
1answer
538 views
How Zend DB Manage Database Connections
I am using Zend Framework for my PHP developments and here is a small function I used to execute a query. This is not about an error. The code and everything works fine. But I want to know some ...


