2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: Dynamic SQL runtime support
|
|
|
|
* MODULE: ddl_proto.h
|
2003-09-29 14:43:14 +02:00
|
|
|
* DESCRIPTION: Prototype Header file for ddl.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): ______________________________________.
|
2004-01-16 11:43:21 +01:00
|
|
|
*
|
|
|
|
* 2004.01.16 Vlad Horsun: added support for default parameters and
|
|
|
|
* EXECUTE BLOCK statement
|
2001-05-23 15:26:42 +02:00
|
|
|
*/
|
|
|
|
|
2003-09-26 12:50:59 +02:00
|
|
|
#ifndef DSQL_DDL_PROTO_H
|
|
|
|
#define DSQL_DDL_PROTO_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-02-12 20:28:13 +01:00
|
|
|
// This is a DSQL internal file. Not to be used by anything but
|
|
|
|
// the DSQL module itself.
|
|
|
|
|
2008-02-28 14:48:16 +01:00
|
|
|
namespace Jrd {
|
|
|
|
class dsql_req;
|
2008-05-24 05:19:52 +02:00
|
|
|
class CompiledStatement;
|
2008-02-28 14:48:16 +01:00
|
|
|
class dsql_fld;
|
|
|
|
class dsql_nod;
|
|
|
|
class dsql_str;
|
|
|
|
};
|
2003-02-12 20:28:13 +01:00
|
|
|
|
2008-02-28 14:48:16 +01:00
|
|
|
void DDL_execute(Jrd::dsql_req*);
|
2008-05-24 05:19:52 +02:00
|
|
|
void DDL_generate(Jrd::CompiledStatement*, Jrd::dsql_nod*);
|
2008-02-28 14:48:16 +01:00
|
|
|
bool DDL_ids(const Jrd::dsql_req*);
|
2008-05-24 05:19:52 +02:00
|
|
|
void DDL_put_field_dtype(Jrd::CompiledStatement*, const Jrd::dsql_fld*, bool);
|
|
|
|
void DDL_resolve_intl_type(Jrd::CompiledStatement*, Jrd::dsql_fld*, const Jrd::dsql_str*);
|
|
|
|
void DDL_resolve_intl_type2(Jrd::CompiledStatement*, Jrd::dsql_fld*, const Jrd::dsql_str*, bool);
|
|
|
|
void DDL_gen_block(Jrd::CompiledStatement*, Jrd::dsql_nod*);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-09-26 12:50:59 +02:00
|
|
|
#endif // DSQL_DDL_PROTO_H
|
2003-09-29 14:43:14 +02:00
|
|
|
|