You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had included all .h & .m file from src folder to my application in supporting files folder.
I created tbl_FileWatcher: @interface tbl_FileWatcher : ZIMOrmModel
{ @Protected
NSData *_FileWatcher;
NSString *_FolderPath;
NSString *_Ext;
} @Property (strong, nonatomic) NSData *FileWatcher; @Property (strong, nonatomic) NSString *FolderPath; @Property (strong, nonatomic) NSString *Ext; @EnD
And in myApplication.m
ZIMOrmSelectStatement *select = [[ZIMOrmSelectStatement alloc] initWithModel: [tbl_FileWatcher class]];
NSArray *records = [select query];
for (tbl_FileWatcher *record in records) {
NSLog(@"%@: %@", [record pk], [record firstName]);
}}
When i build my application "Unexpected '@' in program" error occur at many places:
one of them is:
ZIMSqlAlterTableStatement.m
[array addObject: @[[attributes objectForKey: @"name"], attributes]];
What is wrong? Any suggestion.. Is thr any xcode project which uses this ziminji / objective-c-sql-query-builder?
Please give me feedback... Thanks in advance...
The text was updated successfully, but these errors were encountered:
I had included all .h & .m file from src folder to my application in supporting files folder.
I created tbl_FileWatcher:
@interface tbl_FileWatcher : ZIMOrmModel
{
@Protected
NSData *_FileWatcher;
NSString *_FolderPath;
NSString *_Ext;
}
@Property (strong, nonatomic) NSData *FileWatcher;
@Property (strong, nonatomic) NSString *FolderPath;
@Property (strong, nonatomic) NSString *Ext;
@EnD
And in myApplication.m
ZIMOrmSelectStatement *select = [[ZIMOrmSelectStatement alloc] initWithModel: [tbl_FileWatcher class]];
NSArray *records = [select query];
for (tbl_FileWatcher *record in records) {
NSLog(@"%@: %@", [record pk], [record firstName]);
}}
When i build my application "Unexpected '@' in program" error occur at many places:
one of them is:
ZIMSqlAlterTableStatement.m
[array addObject: @[[attributes objectForKey: @"name"], attributes]];
What is wrong? Any suggestion.. Is thr any xcode project which uses this ziminji / objective-c-sql-query-builder?
Please give me feedback... Thanks in advance...
The text was updated successfully, but these errors were encountered: