Is it possible to pass data to Oracle Trigger?
I use Oracle Trigger to log all UPDATE/INSERT/DELETE query, is it possible to pass php session_id to Oracle Trigger ? like append in the query, possible ? 开发者_StackOverflow中文版how to ?
You can use contexts. So right after you have connected to database - you specify the php session id to context and read it from the context in trigger.
精彩评论