CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 1999
    Location
    Singapore
    Posts
    18

    stored procedures

    Hi
    Can anyone give me an example of how to create a stored procedure using data view from scratch? Are there any debuggers for stored procedures? I keep getting error messages for my procedures.
    Lynn


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: stored procedures

    sample:

    Create Procedure Helloworld
    as
    print "Hello,world"




    VB 6 comes with a TSQL Debugger - that I have never used... AFAIK it's an Add-In.
    You need to have a syntactically correct SP before you can debug it, though.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured