dql
What is the correct way to retrieve information from two tables using doctrine ORM
I am trying to perform a simple join on two tables and am having trouble finding the right syntax to use - I know i am missing something simple.[详细]
2023-01-22 14:02 分类:问答What's "wrong" with my DQL query?
I have the following SQL query: select bank.* from bank join branch on branch.bank_id = bank.id join account a on a.branch_id = branch.id[详细]
2023-01-21 00:24 分类:问答Doctrine - encryption with dql listeners
I am attempting to encrypt certain database fields by adding a call to mysql AES_ENCRYPT (and AES_DECRYPT) using Doctrine DQL Hooks.[详细]
2023-01-20 22:23 分类:问答DQL-Documentum query
Can any one please provide a solution in Documentum Query La开发者_高级运维nguage to access the folder details of a file checked out from documentum if we provide the object_id of the corresponding fi[详细]
2023-01-18 19:55 分类:问答DQL to get r_object_id From DRL
I have a situation like this. I checked out a file from documentum (File is a dita-map ). File has a reference to another file in the repository.[详细]
2023-01-17 07:40 分类:问答doctrine2 dql, use setParameter with % wildcard when doing a like comparison
I want to use the parameter place holder -开发者_运维技巧 e.g. ?1 - with the % wild cards. that is, something like: \"u.name LIKE %?1%\" (though this throws an error). The docs have the following two[详细]
2023-01-17 02:25 分类:问答DQL to get i_chronicle_id from r_object_id
I have a situation like this: I need to find out the i_chronicle_id of a document. If I try with r_object_id(i.e select i_chronicle_id from dm_document where r_object_id=\'some id\', it will return me[详细]
2023-01-16 21:14 分类:问答DQL query for getting specific columns from the table
I had created the following table method in order to extract some specific table columns to allow later comparison to values stored on arrays:[详细]
2023-01-14 22:02 分类:问答doctrine 2 Annotations and Zend Framework underscore convention
I am working through the doctrine 2 (Beta3) sandbox and trying to apply the Zend Framework coding convention of placing a leading underscore to private class members. When I query Address, while its p[详细]
2023-01-13 18:23 分类:问答Doctrine: Bind IN parameters
I was wondering if it is possible to bind an array of integers as a parameter, so I could do something like this?[详细]
2023-01-12 01:38 分类:问答