At work we sit behind a proxy server. A very restrictive proxy server. Now I know the reason for this is so we can be ISO whatever certified on our security. But for the moment I’m going to pretend that it’s because we are not trusted.
This same poxy handles SSL connections such that [...]
Read More
I write this just after taking over an ADF project from a work mate. I had tried to dabble with Oracle ADF in the past, but it got side tracked by PHP work. Now I take over this new project and all of a sudden I need to learn ADF for real.
After 2 days [...]
Read More
Just came across a problem with oci_bind_by_name in php and inserting nulls. If I left named parameters blank, the qery would fail. If I tried:
oci_bind_by_name($stmt, “name”, null);
It would moan about ‘only variables can be passed by reference’. Seems obvious now but at the time it really stumpted me. The solution is to make a [...]
Read More