hs_null workaround
Hi guys,
I don't have a Pre (yet) but the following should automate updating all the hs_null values to empty without having to go to too much effort.
Root to your Pre and run the following 5 lines. (The first line backs up your database to be on the safe side)
cp /usr/lib/luna/CarrierNetworkSettings.db3 /usr/lib/luna/CarrierNetworkSettings.db3.backup
sqlite3 /usr/lib/luna/CarrierNetworkSettings.db3
UPDATE com_palm_data_carriernetworksettings_DataConnectionSettings set cshnPassword = '' where cshnPassword = 'hs_null';
UPDATE com_palm_data_carriernetworksettings_DataConnectionSettings set cshnUserName = '' where cshnUserName = 'hs_null';
.quit
Let me know how it goes.
Greg
|