attach the NASL database to sql server management studio 2008

' simple tutorial on how to interact to SQL SERVER DATABASE 2008 using Visual Basic.Net 2010
' general features:
'   pure SQL Statements (select, insert, delete, update)
'   how to use sub procedures with parameters and how to call procedures directly

'tips from me
'if using/creating a procedures always declare as private/public not only as SUB
'in calling sub procedures and functions, always use CALL to make d program readable!