The following code illustrates how to handle communications errors from embedded SQL applications:
if( psqlca->sqlcode == SQLE_COMMUNICATIONS_ERROR ) {
printf( " Stream error information:\n"
" stream_error_code = %ld\t(ss_error_code)\n"
" error_string = \"%s\"\n"
" system_error_code = %ld\n",
(long)info.stream_error.stream_error_code,
info.stream_error.error_string,
(long)info.stream_error.system_error_code ); |
SQLE_COMMUNICATIONS_ERROR is the general error code for communications errors.
To keep UltraLite small, the runtime reports numbers rather than messages.
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2010, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.0 |