Re: Regarding Connection Context

2004-12-11 Thread Shankar Unni
[EMAIL PROTECTED] wrote: A runtime context, usually simply called a context, is a handle to a an area in client memory which contains zero or more connections, zero or more cursors, their inline options (such as MODE, HOLD_CURSOR, RELEASE_CURSOR, SELECT_ERROR, and so on.) and other additional sta

RE: Regarding Connection Context

2004-12-11 Thread lakshmi.narasimharao
Of Shankar Unni Sent: Saturday, December 11, 2004 3:18 AM To: [EMAIL PROTECTED] Subject: Re: Regarding Connection Context [EMAIL PROTECTED] wrote: > CONTEXT USE Example: Do *you* really understand what this feature is supposed to do? Can you explain it to us in (low-level) detail? No, My

Re: Regarding Connection Context

2004-12-10 Thread Shankar Unni
[EMAIL PROTECTED] wrote: CONTEXT USE Example: Do *you* really understand what this feature is supposed to do? Can you explain it to us in (low-level) detail? No, MySQL doesn't have a feature like this. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Regarding Connection Context

2004-12-09 Thread lakshmi.narasimharao
Hi ALL, CONTEXT USE Example: #include #include main() { sql_context ctx1; char *usr1 = "scott/tiger"; EXEC SQL CONTEXT ALLOCATE :ctx1; //Create Context EXEC SQL CONTEXT USE :ctx1; // Use Context EXEC SQL CONNECT :usr1; EXEC SQL CONTEXT USE DEFAULT; EXEC SQL INSERT INTO emp (empno, ename) VA