00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00022 @interface SimpleDBSelectRequest : NSObject
00023
00024 {
00025 NSString* selectExpression;
00026 NSString* nextToken;
00027 bool consistentRead;
00028
00029 }
00030
00031
00035 @property (nonatomic, retain) NSString* selectExpression;
00036
00041 @property (nonatomic, retain) NSString* nextToken;
00042
00050 @property (nonatomic) bool consistentRead;
00051
00052
00057 -(id)init;
00058
00065 -(id)initWithSelectExpression:(NSString*)theSelectExpression;
00066
00078 -(id)initWithSelectExpression:(NSString*)theSelectExpression andConsistentRead:(bool)theConsistentRead;
00079
00086 -(NSString*)description;
00087
00088
00089 @end
00090