Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    use DBI;
    ...
    $result->{LongReadLen}=512*1024;
    $result->{LongTruncOk}=1;
    $result->execute() or print $result->errstr();
    
  2. or download this
    create procedure ex (@name varchar(200))
    as
    ...
    insert into x(cust_name) values(@name)
    end
    GO