When Experience Will Fail You

The other day I was in autozone and was looking for something that would act as a degreaser. When I asked the clerk he promptly told me “Yes sir, we do, and we’re having a special 2 for the price of one” he went on to tell me that he used it on his barbecue grill and his wife swears by it. So, I bought it. When I finally got around to my project that I needed to use it on, I sprayed it on waited a few seconds and wiped it down, and if you ask me it was just OK, it wasn’t the revolutionary product exactly as he exclaimed.

(advertisement)
While I was using it, I had a thought about the whole experience… This guy was about 20 years old and he said it was the best thing he had ever seen, then I thought “You old #$#@”, of course how many things could he have seen, he was only 20!!!!

Windows XP and Office 2003 Support Ends by Microsoft, But Hey, I’m Still Here!

When you’re windows XP takes a turn, or your office 2003 does something weird, don’t forget about me, even though you’ll get “We no longer support that release of windows from big Micro$oft” I’ll be happy to help, and with 26 years of experience it won’t take long either. Sure you can call the “big box” geeks, but, they’ll take all day and then tell you, you should reformat your hard drive and start over or worse yet, tell you to upgrade and get help from Microsoft.

Sure the choice is yours, but, spend a little now on a real company that really works as if it was their stuff or call someone who only cares about a buck or two.

PS. I do websites, and web hosting too!!!!

(advertisement)

Unable to find connection MyConnection (MySettings) for object “MySettings”

As a programmer you can imagine the occasional “All nighters” and by the end of the day (actually the next morning) sometimes you feel like you’ve been through the ringer (colloquial term used as a method to dry clothes).

I was working away on a project in VS 2010 and was adding a Table Adapter when I got this friendly message…

“Unable to find connection ‘MyConn (MySettings)1’ for object ‘MySettings’. The connection string could not be found in application settings, or the data provider associated with the connection string could not be loaded. .”

I googled the problem, because every few seconds after that I kept getting “Object Reference not set to an instance of an Object” (sounds like something Yoda would say) and was stuck cold to do any troubleshooting on my own. Well, I did find others that had a similar problem but they went deep into the workings of all the behind the scenes stuff that we usually just point and click to do. Some guy had been waiting 2 weeks from Microsoft for an answer, because they could’nt figure it out. Since I’ve been developing for a long time I realize you can never depend on the creator of the language, I actuall went to the creator of a DBMS language in the 80’s and asked them directly “What do you mean that your compiler is telling my code “it’s too complex” (thank goodness I don’t write too many 5 dimentional arrays any more).

Ok, back to the story… I spent a few hours changing my SQL query thinking I had really done something that it could’nt understand (I had some CASE statements within the inline SQL statement) and that my problem was there.

After leaving it alone for a while I went back the next night to see if I could try something different. Since there is always more than one way to handle an issue I was prepared to change my plan, but, I really had a great query that would save some code time if I could just get it to work.

Well, to make a short story longer, I ended up creating a new dataset xsd file and adding that to the project. I left the other defined dataset file intact for now, I recreated the query in the new dataset and guess what? It saved just fine (no errors at all), Since this was a new project I was able to cut and paste any existing (working) table adapters I had in the original dataset to the new one. Once I made the small modificaitons in code where I referenced the original dataset to the new dataset, deleted the original dataset and everything was back to “Full Steam Ahead”.

The moral of the story is, you learn early that you can’t get frustrated when you have to spend 4-5 hours trouble-shooting a problem that has no basis for happening in the first place, when we could have done so much more in that same amount of time.

Update: Obviously I was’nt going to get off that easy. This time it happened again when I was just creating a regular dataset, I worked around this by creating a new dataset file (xsd) and created my dataset there. I couldnt copy this new datatable over to the other dataset but, its working.

Update [Probable Solution]: OK, this may be a clue. I was adding another Query to an existing dataset and I got the object referrence error, this time I noticed that whenever I double checked the connection string on the individual data adapters (just click on the name of the table adapter and look at properties) one of them was using a data connection that isnt part of the project. So double check your tableadapter connection strings to make sure there valid. I’m not sure why all of a sudden it decided to act like this, but, this might save you some time.

(advertisement)