0
votes
2answers
29 views
Zend Framework: How to check an additional column while using DbTable Auth Adapter?
Currently, I'm getting a regular DbTable Auth Adapter:
protected function _getAuthAdapter($formData)
{
$dbAdapter = Zend_Db_Table::getDefaultAdapter();
$authAdapter = new …
0
votes
2answers
22 views
Zend Framework: How to find a table row by the value of a specified column?
I am implementing my model exactly like the quickstart guide.
In my model I am trying to implement a findByToken() method. The current find() method accepts an $id parameter, but I want to find by …
3
votes
3answers
47 views
Zend_Db and Date Based Queries
I'm using Zend_Db to query a table. I have some WHERE clauses that need to be dates and it's not clear (at first glance) how to do this "the right way". Does Zend_Db provide an abstraction so I don't …
0
votes
2answers
56 views
Zend_Db: Adapter suddenly is null!
Hey there,
I'm using Zend_Db in one of my projects.
Now I have the problem, that suddenly during the code execution, the variable $_db in Zend_Db_Adapter_Abstract is null. (shown by …
0
votes
1answer
16 views
Zend Framework: Error in my database query syntax, please help!
I keep getting this error in my application and can't figure out what it means and where it's happening. I know it's in one of my models but I don't understand the error.
SQLSTATE[HY093]: Invalid …
0
votes
1answer
37 views
Zend Db avoiding sql injections
Hi,
I have the following code:
public function checkLoginDetails($email, $password) {
$select = $this->select ();
$select->where ( "password=?", md5($password) );
$select->where ( …
2
votes
1answer
49 views
Zend Framework: How to retrieve the id of the last inserted row?
I'm inserting a new row into my database with this code:
$data = array(
'key' => 'value'
);
$this->getDbTable()->insert($data);
How can I get the row id of the this row that I just …
2
votes
1answer
115 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...
…
0
votes
2answers
62 views
Zend Framework: How to delete a table row where multiple things are true?
Normally, this would work for me:
$db = Zend_Db_Table::getDefaultAdapter();
$where = $db->quoteInto('id = ?', $id);
$db->delete('tablename', $where);
but I have to match two ids. So I don't …
0
votes
1answer
42 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 = …
0
votes
2answers
50 views
Zend Framework: How to concatenate two columns and still use fetchPairs() ?
I have a form with a select element that I need to populate with values from a database. Specifically, the name and id of the current users. The fetchPairs() function works great for this! However, I …
2
votes
8answers
2k views
Registering Zend Database Adapter in Registry
Hi
I am looking to register a reference to the main Database Adapter in the Registry during Bootstrapping so it can be used elsewhere in my site (specifically the Authorisation action).
I have …
1
vote
5answers
430 views
Is Zend Framework a total waste of my time?
Ok, I'm about 50% done with the "30 minute" quickstart guide from Zend.
I must be missing something, because this seems like a total waste of time. The point of this quickguide is to create a …
1
vote
2answers
55 views
Can I generate table creation sql from Zend_db ?
Hey,
I have to work on this project written using Zend Framework. This is a project developed by somebody else that is unreachable at this time and I only have the php code but not the database.
…
0
votes
1answer
69 views
Insert into .. select from .. using zend db
I have the following raw query which moves items from a shopping cart to an order table:
insert into webshop_order_item (
order_id,
product_id,
count
)
select
1,
product_id,
…
