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.
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
I am attempting to encrypt certain database fields by adding a call to mysql AES_ENCRYPT (and AES_DECRYPT) using Doctrine DQL Hooks.
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
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.
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
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
I had created the following table method in order to extract some specific table columns to allow later comparison to values stored on arrays:
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
I was wondering if it is possible to bind an array of integers as a parameter, so I could do something like this?