View Single Post
Old 10/28/2009, 05:45 AM   #115 (permalink)
greg_roll
Member
 
Join Date: Jun 2009
Posts: 614
Likes Received: 17
Thanks: 66
Thanked 745 Times in 165 Posts
Default 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
greg_roll is offline   Reply With Quote