Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
X002548
Not Just a Number
15586 Posts |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2006-08-08 : 16:22:04
|
Which product are you referring to? Visual Studio?Tara Kizer |
 |
|
X002548
Not Just a Number
15586 Posts |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2006-08-08 : 16:44:30
|
Do you have any programming experience such as with C++, Java, Visual Basic, etc...? If not, then the learning curve will be huge. My degree is BS in Math with emphasis in Computer Science. So I had a few programming classes in college, such as C++, Java, Assembly language, and Pascal. I decided to learn .NET last year, specifically VB.NET and C#. It wasn't that easy. I even took a .NET fundamentals class that my company paid for. Luckily my husband is a developer and helped me out along the way as I created programs. One of my programs is even in production.I'd get the products installed and start playing with them by doing examples in .NET books. If your company isn't willing to pay for the license, then you should check out the express products. Tara Kizer |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2006-08-08 : 17:15:32
|
i have to agree with tara.personally i prefer c# because i'm a child of c++ and i don't like VB syntax.On the other hand VB syntax is a bit closer to T-SQL than c#.things to learn:1. objects: inheritance, polymorphism, encapsulation2. classes and interfaces3. get a general overview of .net (It's huge). I'd focus on ADO.NET and data access in general. DataReaders, DataAdapters, datasets, datatables, etc.4. a bit of threading (always a good thing) especially now that you can do CLR integration in SS2k5 multithreading can wreck havoc in the DLL's (locks, waiting, etc)5. a bit of asp.net. maybe how it works etc... for example ASP.Net 1.x works differently than 2.0. 1.x is more like build the whole site, while 2.0 is more like build only one page. kind of...pricing can be found on MS site (doh.... ) but i think that VS2k5 standard edition is around $250.you can always ask ahere for pointers.. enough of us deal with it. Have fun in the procedural world Go with the flow & have fun! Else fight the flow blog thingie: http://weblogs.sqlteam.com/mladenp |
 |
|
X002548
Not Just a Number
15586 Posts |
Posted - 2006-08-08 : 17:21:17
|
quote: Originally posted by spirit1 Have fun in the procedural world 
That's were I was born...too many years ago to quoteThey say it's like rexx as well...and besides I'm no fool..if I build anything, it'll all be presentation layer...all the business logic will still be in sprocsBrett8-)Hint: Want your questions answered fast? Follow the direction in this linkhttp://weblogs.sqlteam.com/brettk/archive/2005/05/25/5276.aspxAdd yourself!http://www.frappr.com/sqlteam |
 |
|
Kristen
Test
22859 Posts |
Posted - 2006-08-09 : 13:37:07
|
"all the business logic will still be in sprocs"So now all you have to do is persuade yourself that CONVERT(varchar(24), MyDate, 113) is "Business Logic" !!Kristen |
 |
|
|
|
|
|
|