8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:03:03 +01:00
This commit is contained in:
asfernandes 2009-11-13 01:36:09 +00:00
parent d2aa8f66a7
commit 0b2a994c27
6 changed files with 22 additions and 24 deletions

View File

@ -20,7 +20,7 @@ states of engine) try to stop running request and error-return to the user.
- fb_cancel_disable: disable execution of fb_cancel_raise requests for given attachment. It's - fb_cancel_disable: disable execution of fb_cancel_raise requests for given attachment. It's
useful when your program executes some critical things (for example, cleanup). useful when your program executes some critical things (for example, cleanup).
- fb_cancel_enable: enables previously disabled cancel delivery. - fb_cancel_enable: enables previously disabled cancel delivery.
- fb_cancel_abort: forcible closed client side of connection. Useful if you need to close - fb_cancel_abort: forcible close client side of connection. Useful if you need to close
connection urgently. All active transactions will be rolled back by server. Success always connection urgently. All active transactions will be rolled back by server. Success always
returned to the application. Use with care ! returned to the application. Use with care !

View File

@ -3892,8 +3892,9 @@ void get_function_arg(BurpGlobals* tdgbl, bool skip_arguments)
l = GET_TEXT(X.RDB$FUNCTION_NAME); l = GET_TEXT(X.RDB$FUNCTION_NAME);
MISC_terminate(X.RDB$FUNCTION_NAME, temp + prefixLen, l, MISC_terminate(X.RDB$FUNCTION_NAME, temp + prefixLen, l,
sizeof(temp) - prefixLen); sizeof(temp) - prefixLen);
BURP_verbose (119, temp);
// msg 119 restoring argument for function %s // msg 119 restoring argument for function %s
BURP_verbose(119, temp);
} }
break; break;
@ -8762,5 +8763,3 @@ void update_view_dbkey_lengths(BurpGlobals* tdgbl)
} // namespace } // namespace

View File

@ -723,7 +723,7 @@ static void get_procedure_args_ods12(const char* proc_name)
* *
* Functional description * Functional description
* This function extracts the procedure parameters and adds it to the * This function extracts the procedure parameters and adds it to the
* extract file * extract file.
* Make sure to pass here only the names of procedures that are global. * Make sure to pass here only the names of procedures that are global.
* *
**************************************/ **************************************/
@ -1449,7 +1449,6 @@ static processing_state list_all_grants2(bool show_role_list, const SCHAR* termi
else else
SHOW_grant_roles2(terminator, 0, 0, mangle); SHOW_grant_roles2(terminator, 0, 0, mangle);
if (isqlGlob.major_ods >= ODS_VERSION12) if (isqlGlob.major_ods >= ODS_VERSION12)
{ {
// For stored procedures, but ignore procedures inside packages. // For stored procedures, but ignore procedures inside packages.