home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 1996, NeXT Software, Inc.
- All rights reserved.
-
- You may freely copy, distribute and reuse the code in this example.
- NeXT disclaims any warranty of any kind, expressed or implied,
- as to its fitness for any particular use.
- */
- #import <EOAccess/EOAccess.h>
-
- @interface FlatFileSQLExpression:EOSQLExpression
- {
- }
-
- + (NSArray *)createTableStatementsForEntityGroup:(NSArray *)entityGroup;
- + (NSArray *)dropTableStatementsForEntityGroup:(NSArray *)entityGroup;
- + (NSArray *)primaryKeyConstraintStatementsForEntityGroup:(NSArray *)entityGroup;
- + (NSArray *)primaryKeySupportStatementsForEntityGroup:(NSArray *)entityGroup;
- + (NSArray *)foreignKeyConstraintStatementsForEntityGroup:(NSArray *)entityGroup;
-
- @end
-