Source position: xqc.pas line 245
type XQC_Query_s = record |
get_dynamic_context: function( |
query: XQC_Query; |
out context: XQC_DynamicContext |
):XQUERY_ERROR; |
get_static_context: function( |
query: XQC_Query; |
out context: XQC_StaticContext |
):XQUERY_ERROR; |
execute: function( |
query: XQC_Query; |
fileptr: pfile |
):XQUERY_ERROR; |
serialize_file: function( |
query: XQC_Query; |
options: pointer; |
fileptr: pfile |
):XQUERY_ERROR; |
serialize_stream: function( |
query: XQC_Query; |
options: pointer; |
stream: XQC_OutputStream |
):XQUERY_ERROR; |
is_update_query: function( |
query: XQC_Query |
):cint; |
apply_updates: function( |
query: XQC_Query |
):XQUERY_ERROR; |
sequence: function( |
query: XQC_Query; |
out sequence: XQC_Sequence |
):XQUERY_ERROR; |
set_error_handler: procedure( |
query: XQC_Query; |
handler: XQC_ErrorHandler |
); |
free: procedure( |
query: XQC_Query |
); |
data: pointer; |
end; |