मैंने अपने iPhone 4S की अपनी sms.db फाइल को iOS 5.0.1 (लाइव सिस्टम से scp का उपयोग करके) चलाया है और OSX शेर के साथ शामिल sqlite क्लाइंट का उपयोग करते हुए DB को सामान्य रूप से ब्राउज़ करने में सक्षम था। संभवतः वर्तमान प्रारूप क्लाइंट के पुराने संस्करणों के साथ किसी भी तरह असंगत है। शेर के साथ शामिल क्लाइंट का संस्करण 3.7.7 है:
$ sqlite3 sms.db
SQLite version 3.7.7 2011-06-25 16:35:41
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .databases
seq name file
--- --------------- ----------------------------------------------------------
0 main /Users/tyr/sms.db
sqlite> .tables
_SqliteDatabaseProperties message
drafts msg_group
group_member msg_pieces
madrid_attachment settings
madrid_chat templates
sqlite> select * from settings ;
1|version|2.0.0
2|notificationCode|*N#
3|useNotifications|0
4|isDefault|1
5|compatibilityMode|0
6|useKeybCorr|1
7|useKeybCapi|1
8|useConfirmSend|1
9|nameorder|0
10|useShowAlerts|1
11|useStatusIcon|1
12|landscape|0
13|appSerial|0
14|lastMenu|0
sqlite>