我在项目中使用FMDatabase我需要检查表中的数据。是否有任何工具或其他任何东西可以帮助我查看真实设备上的数据库条目?
答案 0 :(得分:0)
如果要查看应用程序sqlite文件中的数据,请在模拟器版本上查看它很容易。在初始化数据库的位置,在应用程序中打印documentDirectory
路径:
// Get Document Directory path of the device.
- (NSString*) documentsDirectory{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
return [paths objectAtIndex:0];
}
通过cmd + G在资源管理器中导航到该路径,并在文本框中粘贴路径。您将在该文件夹中看到一个.sqlite
文件。使用任何sqlite资源管理器打开它,我使用Mozilla AdOn或SQliteManager。
但是如果你想从你的设备上检查数据库: