8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 13:23:02 +01:00
firebird-mirror/src/dsql/dsql_proto.h

68 lines
2.3 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: Dynamic SQL runtime support
* MODULE: dsql_proto.h
* DESCRIPTION: Prototype Header file for dsql.cpp
2001-05-23 15:26:42 +02:00
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
* Adriano dos Santos Fernandes
2001-05-23 15:26:42 +02:00
*/
2003-09-26 12:50:59 +02:00
#ifndef DSQL_DSQL_PROTO_H
#define DSQL_DSQL_PROTO_H
2001-05-23 15:26:42 +02:00
#include "../common/classes/fb_string.h"
namespace Jrd {
class Attachment;
class jrd_tra;
2008-02-28 14:48:16 +01:00
class dsql_req;
}
2009-01-05 09:48:32 +01:00
Jrd::dsql_req* DSQL_allocate_statement(Jrd::thread_db*, Jrd::Attachment*);
void DSQL_execute(Jrd::thread_db*, Jrd::jrd_tra**, Jrd::dsql_req*,
2008-02-28 14:48:16 +01:00
USHORT, const UCHAR*,
USHORT, USHORT, const UCHAR*,
USHORT, UCHAR*,
USHORT, UCHAR*);
2009-01-05 09:48:32 +01:00
void DSQL_execute_immediate(Jrd::thread_db*, Jrd::Attachment*, Jrd::jrd_tra**,
2008-02-28 14:48:16 +01:00
USHORT, const TEXT*, USHORT,
USHORT, const UCHAR*,
USHORT, const UCHAR*,
2008-02-28 14:48:16 +01:00
USHORT, UCHAR*,
USHORT, UCHAR*,
bool);
ISC_STATUS DSQL_fetch(Jrd::thread_db*, Jrd::dsql_req*, USHORT, const UCHAR*, USHORT, UCHAR*);
2009-01-05 09:48:32 +01:00
void DSQL_free_statement(Jrd::thread_db*, Jrd::dsql_req*, USHORT);
void DSQL_insert(Jrd::thread_db*, Jrd::dsql_req*,
2008-02-28 14:48:16 +01:00
USHORT, const UCHAR*,
USHORT, const UCHAR*);
2009-01-05 09:48:32 +01:00
void DSQL_prepare(Jrd::thread_db*, Jrd::jrd_tra*, Jrd::dsql_req**,
2008-02-28 14:48:16 +01:00
USHORT, const TEXT*,
USHORT, USHORT, const UCHAR*,
USHORT, UCHAR*,
bool);
void DSQL_set_cursor(Jrd::thread_db*, Jrd::dsql_req*, const TEXT*);
2009-01-05 09:48:32 +01:00
void DSQL_sql_info(Jrd::thread_db*, Jrd::dsql_req*,
USHORT, const UCHAR*, ULONG, UCHAR*);
ULONG DSQL_get_plan_info(Jrd::thread_db*,
2009-02-09 16:25:01 +01:00
const Jrd::dsql_req*,
SLONG, SCHAR**,
const bool realloc = true);
2001-05-23 15:26:42 +02:00
2003-09-26 12:50:59 +02:00
#endif // DSQL_DSQL_PROTO_H