Tagged Questions
The zend-db-select tag has no wiki summary.
4
votes
5answers
711 views
Zend PDO error - how can I debug it?
I have a weird problem using Zend Framework and Mysql. I generated a query:
SELECT events.idUser, szForename, szLastname, readers.szName, idZoneFrom, events.dtTime FROM events, users, readers WHERE ...
4
votes
2answers
2k views
Translating a query to use Zend_Db_Select
I'm having some problems translating this query to use ZF's Zend_Db_Select:
SELECT b.id, b.title, b.description
FROM memberships AS m
JOIN blogs AS b ON b.id = m.blog_id
WHERE m.user_id = ?
ORDER ...
3
votes
1answer
308 views
How can I use MySQL GROUP BY modifier WITH ROLLUP in Zend_Db_Select?
The SQL query in my web application(PHP/MySQL + Zend) uses a number of parameters to build the search query. However, the records fetched should be grouped by two columns to get sub totals. WITH ...
2
votes
2answers
77 views
Zend DB Select version of a simple Mysql Left Join
I have a simple Left query on mysql
SELECT sp. * , p.name, p.date_created
FROM subpages sp
LEFT JOIN pages p ON p.id = sp.page_id
I dont know how to execuite this query from zend framework.
I have ...
2
votes
1answer
100 views
stuck with zend_db_table + join
trying to understand of using Zend_Db_Table.
i have a such table:
then i created classes:
class table_1 extends Zend_Db_Table_Abstract
{
protected $_name = 'table_1';
protected $_primary = ...
2
votes
2answers
144 views
Zend_Db_Select row level security
How could I accomplish row level security using Zend_Db_Select? I can think of a few options, but they don't really seem to fit the pattern quite right.
Let's say I have users, content, and many ...
2
votes
2answers
268 views
How to join two tables in Zend and read the resulting data
I have the following query:
$usersTable = new Users();
$rowset = $usersTable->select()
->setIntegrityCheck(false)
->where( 'id = ?', $userId )
->join( 'Books', 'Books.userid ...
2
votes
4answers
754 views
Count on Zend_Db_Select
Say I have a random zend_db_select object.
How can I perform a count on that object, so I know the amount of items that meet the query.
I tried the following:
$data->TotalRecords = ...
2
votes
1answer
151 views
change a complicated query to Zend_Db_Select object
I have a query which is a little complicated:
(SELECT category_id AS id, content_title AS title, content AS detail, 'content' AS type
FROM category_content
WHERE $where
ORDER BY id DESC)
UNION
...
2
votes
3answers
967 views
Multiple/nested “select where” with Zend_Db_Select [closed]
Possible Duplicate:
Grouping WHERE clauses with Zend_Db_Table_Abstract
I need to create something like this:
select name from table where active = 1 AND (name LIKE 'bla' OR description ...
2
votes
2answers
1k views
Best way to do an Inner Join using the Zend Framework?
It seems like there's a few different ways to join two tables using the Zend Framework, but I've never done it before so I don't know which is the best way to do it.
This is what I'm trying to do...
...
1
vote
1answer
54 views
Where to put select statements that return data from multiple tables in Zend framework
When using Zend framework, where should i keep my select statements (in Zend_Db_Select format) that return data from multiple tables (using joins)? In models or in dbtables? I would like to see pros ...
1
vote
1answer
44 views
Zend_Db_Select EXISTS
One part of my query is EXISTS condition:
$select->where(
'EXISTS(' .
'SELECT `price_property_id` FROM `property_price` ' .
'WHERE `price_property_id` = `pu_property_id`' .
' AND ...
1
vote
4answers
76 views
How to inspect every query going to DB from Zend Framework
I have a complex reporting application that allows clients to login and view reports for their client data. There are several sections of the application where there are database calls, using various ...
1
vote
2answers
318 views
How to use GROUP_CONCAT with Zend Framework?
Assume that I have a table : students
______________________________________________________
|id | name | school | class |
...
1
vote
1answer
443 views
When to use which Zend_Db class? Zend_Db_Select vs. Zend_Db_Table_Abstract
I think it's possible to write select queries with either Zend_Db_Select or Zend_Db_Table_Abstract, but I don't understand when to use which of the two.
Is one more optimized for something than the ...
1
vote
1answer
337 views
zend framework select join error getTable()
I am trying to implement this method in my model:
class Application_Model_MenuProfilesProducts extends Zend_Db_Table_Abstract
{
protected $_name = 'menu_profiles_products';
public function ...
1
vote
2answers
244 views
Zend DB Selecting constants - columns that do not exist in table
I'm trying to do this query using Zend DB select but I'm not able to do so
This is the sql query
select shopping_id,shopping_details,"friend" as type
from shopping
Notice here how I'm specifying ...
1
vote
2answers
798 views
Zend_Db order by field Value
I'm outputting the contents of a select menu from a model using this:
$select = $this->select();
$select->order('name');
return $this->fetchAll($select);
However, what i want to do is ...
1
vote
1answer
2k views
Zend Framework: How to do a DB select with multiple params?
I'm just wondering what the syntax is to do a db select in Zend Framework where two values are true. Example: I want to find if a user is already a member of a group:
$userId = 1;
$groupId = 2;
$db = ...
1
vote
1answer
593 views
Get table alias from Zend_Db_Table_Select
I'm working on an Active Record pattern (similar to RoR/Cake) for my Zend Framework library. My question is this: How do I figure out whether a select object is using an alias for a table or not?
...
0
votes
2answers
51 views
Use of select queries in Zend Framework without providing database info
I use select queries as by following code:
$params = array(
'username' => 'root',
'password' => '',
'dbname' => 'mst2');
$db = Zend_Db::factory('pdo_mysql', ...
0
votes
2answers
41 views
can`t resolve default schema in zend_db_select
why zend_db_select does not pick up schema from config file? and how can i fix it?
config:
resources.database.adapter = "Oracle"
resources.database.params.dbname = "(DESCRIPTION = (ADDRESS = ...
0
votes
1answer
95 views
extending zend db select
I am building a CMS kind of site, There will be lot of admin users. ACL was in place for business layer. But now we want to apply custom ACL logic to models based on city in which admin user belongs.
...
0
votes
2answers
79 views
how to get this query into Zend_db_select
I have following query:
SELECT *
FROM
(SELECT products.uid, products.title, products.ean, products.description, products.price, products.date_publish, publishers.name, GROUP_CONCAT( CONCAT ...
0
votes
0answers
59 views
Zend_Db_Select won't allow column values from joined tables
I am having a problem getting Zend_Db_Select to give me column values from joined tables. For example, this join works:
$select->from(array('a' => 'files'), ...
0
votes
1answer
87 views
Zend_Db_Select LIKE clause
How can I set this query
SELECT city_id FROM cities WHERE city_name LIKE "%Vicenza%"
using the Zend_Db_Select class?
0
votes
1answer
36 views
Extracting query parts through Zend_Db_Rowset
I am building a class that only receive a Zend_Db_Rowset throught its params and from that I can extract the related Zend_Db_Table using the $rowset->getTable() method.
I was wondering if there is ...
0
votes
1answer
86 views
how to use “LIKE” Mysql expression with Zend_DB_Table_Select?
I am trying to use "LIKE" mysql expression in Zend_Db_Table_Select format but getting
errorMessage:
SQLSTATE[HY093]: Invalid parameter number: no parameters were bound
below is the my code
...
0
votes
2answers
268 views
Zend_Db_Select: LEFT JOIN on a subselect
I have a query, that does a LEFT JOIN on a subselect. This query is run in a high load environment and performs within the set requirements. The query (highly simplified) looks like:
SELECT
...
0
votes
1answer
121 views
zend db join resultset
I used zend_db_select for joining 3 tables, and in the result set array while I was expecting to see the column names with aliases, it returns an array with keys having no aliases.
$dbSelect = ...
0
votes
1answer
54 views
How do I select for something with a colon with Zend_Db_Select?
I have a query where I need to select text with a colon inside, basically it looks like this:
$select = $this->db->select()
->from('table')
->where(sprintf('tag = ...
0
votes
1answer
150 views
Escaping input for LIKE in Zend_Db
What is the right way to escape text that is passed to query with LIKE pattern matching?
The problem is that
select()->where('field LIKE ?', $input . '%');
will be incorrect with
$input = ...
0
votes
0answers
154 views
How can I add brackets to my sql query [closed]
Please help me .How can I add brackets to my sql query in Zend_Db_Select
0
votes
1answer
59 views
Zend_Db_Select help with join
i'm using the following code and get the following error
$select = $model->select();
$select->from(array('stocktakejob'),
array("ProductID" => "stocktakejob.ProductID",
...
0
votes
1answer
104 views
how to change the order of columns in a query with joins using Zend_Db_Select
I have rather complex query and I could build it with Zend_Db_Select step by step. The query look likes this:
SELECT `subscribers`.`subscriber_id`, `subscribers`.`email_address`, ...
0
votes
3answers
92 views
Select ignores where clause using Zend_Db_Select
$table = new Zend_Db_Table(array('name'=>'rules'));
$select = $table->select();
$select->setTable($table);
$select->setIntegrityCheck(false);
$select = $select
...
0
votes
1answer
95 views
Need help with zend_select() Join
I'm currently working with Zend framework and I need help to convert this query to zend_select() format. Can someone kindly help me out please
Thanks so much in advance!
SELECT p .*
FROM provider p
...
0
votes
2answers
138 views
zend_db_select join using 3 or more tables
So Zend_db_select has the methods
`joinUsing(table, join, [columns]) and joinInnerUsing(table, join, [columns])`
`joinLeftUsing(table, join, [columns])`
`joinRightUsing(table, join, ...
0
votes
1answer
358 views
Sql (zend db select) of multiple selects
I need a bit of help.
I have (reference?) table with columns: id , user_id , key , value
It is pretty much a user profile table
and I would like to have SQL (I am using zend db table, but general SQL ...
0
votes
2answers
118 views
Chech if any rows were selected with Zend_Db_Select
I'm selecting a post from my DB table and I'm getting the id from the url with getParam(). What I want to do is, show an error message when there's no posts with the id specified in the url.
This is ...
0
votes
1answer
79 views
How to initiate Zend_Db_Select object?
Hey guys,
I'm having truble figuring this out: how do I initiate a zend_Db_Select object with the resources from my application.ini?
$db = Zend_Registry::get('db');
$select = $db->select();
But ...
0
votes
1answer
202 views
zend_db_select use with zend_db_table_abstract
I'm not sure how to do this: My Post model is extending Zend_Db_Table_Abstract and I'm working on my homepage right now, where I want to show every post from the DB. The documentation says that ...
0
votes
1answer
664 views
how to join table with the subquery not table using Zend_Db_Select
I have a SQL like this:
SELECT users.user_id, email_address, t1.value as 'languages'
FROM users
LEFT JOIN (SELECT user_id, field_id, GROUP_CONCAT(value SEPARATOR ',') AS value
FROM user_multivalued ...
0
votes
1answer
190 views
Php Zend Framework : Using Zend_Db_Select to return objects
Currently right now I'am using Zend_DB_Select, I would like to return the rows as objects so that I can use methods like save(), delete()
Function includes:
$table = self::instance();
...
0
votes
1answer
188 views
Zend Framework: Re-use WHERE clause returned from Zend_Db_Select::getPart()
I have a SELECT object which contains a WHERE.
I can return the WHERE using getPart(Zend_Db_Select::WHERE), this returns something like this:
array
0 => string "(clienttype = 'agent')"
1 ...
0
votes
1answer
297 views
Zend DB Select nested Joins
I'm trying to realize the following query with zend db select:
SELECT `uac`.`uid`, `u`.`uid`, `g`.`groupid`, `g`.`packageid`
FROM `user_has_data` AS `uac`
INNER JOIN `users` AS `u` ON u.uid = ...
0
votes
2answers
143 views
How does one query a Zend_Db_Table_Row
Is it possible to run an SQL (Zend_Db_Select) query against a Zend_Db_Table_Row object? What about joining two Zend_Db_Table_Row objects?
I know it sounds a bit retarded, but I'm processing hundreds ...
0
votes
1answer
144 views
Zend Framework: How Do I 'auto' generate a SQL query correctly
I want to generate the following SQL:
SELECT `rc`.*, `c`.`name` FROM `RunConfigurations` AS `rc` INNER JOIN `Clients` AS `c` ON rc.client_id = c.id WHERE (rc.client_id = ?) ORDER BY ...
0
votes
2answers
110 views
Join with Zend_Db, without having the columns of the joined tables
I use Zend_Db_Select to perform a query with a Join. I end up with the following SQL query :
SELECT `Utilisateur`.*, `Ressource`.*, `Acl_Cache`.*, `Role`.*, `UtilisateurRole`.* FROM `Utilisateur`
...