~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSException.cc

Removed libxml reqirement by using a home grown xml parser.
Assorted chnages made made for MySQL compatability.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
        cs_strcpy(CS_EXC_MESSAGE_SIZE, iMessage, message);
93
93
}
94
94
 
 
95
void CSException::initException(CSException &exception)
 
96
{
 
97
        iErrorCode = exception.iErrorCode;
 
98
        strcpy(iContext, exception.iContext);
 
99
        strcpy(iMessage, exception.iMessage);
 
100
        
 
101
        iStackTrace.setLength(0);
 
102
        iStackTrace.append(exception.iStackTrace.getCString());
 
103
 
 
104
}
 
105
 
95
106
void CSException::initAssertion(const char *func, const char *file, int line, const char *message)
96
107
{
97
108
        cs_format_context(CS_EXC_CONTEXT_SIZE, iContext, func, file, line);