~ubuntu-branches/ubuntu/edgy/sope/edgy

« back to all changes in this revision

Viewing changes to sope-gdl1/PostgreSQL/PostgreSQL72Expression.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Ley
  • Date: 2005-08-19 16:53:31 UTC
  • Revision ID: james.westby@ubuntu.com-20050819165331-hs683wz1osm708pw
Tags: upstream-4.4rc.2
ImportĀ upstreamĀ versionĀ 4.4rc.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
   PostgreSQL72Expression.h
 
3
 
 
4
   Copyright (C) 1999 MDlink online service center GmbH and Helge Hess
 
5
 
 
6
   Author: Helge Hess (helge@mdlink.de)
 
7
 
 
8
   This file is part of the PostgreSQL72 Adaptor Library
 
9
 
 
10
   This library is free software; you can redistribute it and/or
 
11
   modify it under the terms of the GNU Library General Public
 
12
   License as published by the Free Software Foundation; either
 
13
   version 2 of the License, or (at your option) any later version.
 
14
 
 
15
   This library is distributed in the hope that it will be useful,
 
16
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
   Library General Public License for more details.
 
19
 
 
20
   You should have received a copy of the GNU Library General Public
 
21
   License along with this library; see the file COPYING.LIB.
 
22
   If not, write to the Free Software Foundation,
 
23
   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
24
*/
 
25
 
 
26
#ifndef ___Postgre_SQLExpression_H___
 
27
#define ___Postgre_SQLExpression_H___
 
28
 
 
29
#include <GDLAccess/EOSQLExpression.h>
 
30
 
 
31
@class NSString, NSArray;
 
32
@class EOSQLQualifier, EOAdaptorChannel;
 
33
 
 
34
@interface PostgreSQL72Expression : EOSQLExpression
 
35
 
 
36
+ (Class)selectExpressionClass;
 
37
 
 
38
@end
 
39
 
 
40
@interface PostgreSQL72SelectSQLExpression : EOSelectSQLExpression
 
41
{
 
42
  BOOL lock;
 
43
}
 
44
 
 
45
- (id)selectExpressionForAttributes:(NSArray *)attributes
 
46
  lock:(BOOL)flag
 
47
  qualifier:(EOSQLQualifier *)qualifier
 
48
  fetchOrder:(NSArray *)fetchOrder
 
49
  channel:(EOAdaptorChannel *)channel;
 
50
 
 
51
- (NSString *)fromClause;
 
52
 
 
53
@end
 
54
 
 
55
#endif