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

    NEED HELP WITH SIMPLE SQL!!! THANKS

    Hello,

    I know that this is not a SQL forum, but I know that someone out
    there reading this can help me with the following questions. I
    really appreciate it. Thanks in advance.

    How is an SQL command terminated?
    How is an SQL command executed?
    Can you cancel a running SQL query? How?



  2. #2
    Join Date
    Nov 1999
    Location
    Indianapolis, IN
    Posts
    191

    Re: NEED HELP WITH SIMPLE SQL!!! THANKS

    I think they are typically terminated with a semi-colon (
    I think they are executed with a 'run;' statement.

    For example:
    Select * from tableName where x=y;
    run;


    If you calling the sql from Java, then I don't know of a way to cancel.

    Typical disclaimers apply, as it's been a while since I've done this.


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