Results 1 comments of Yu Qi

db的初始化: ```objective_cpp NSString *dbPath = [NSString stringWithFormat:@"%@/user_%@_db.sqlite", [NMYFileManager appDataDocumentDir],self.currentId]; self.currentDB = [[WCTDatabase alloc] initWithPath:dbPath]; ``` 判断表是否存在的代码: ``` + (NSString *)tableName { return @"NMYSessionUserModel"; } + (BOOL)exsitTable { return [NMYDBStorage.share.dataBase isTableExists:NMYSessionUserModel.tableName];...