Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; use DBI qw(:sql_types); #set up connection my ( $data_source, $database, $user_id, $password ) =qw ( MANTIS-1\\SQ +LEXPRESS lc_bugtracker_db bugadmin 1bug2admin. ); #set up column values my ( $name, $status, $enabled, $view_state, $access_min ,$file_path ) +=qw (project1 2 0 1 1 C:\\defect_tracking_project\\testproject); my $description = "this is the project description"; my $conn_string = "driver={SQL Server}; Server=$data_source; Database=$database; UID=$user_id; PWD=$password; { RaiseError => 1, AutoCommit => 0 }"; #Connect the database handle. my $dbh = DBI->connect("DBI:ODBC:$conn_string"); #SQL Insert statement and get identity value created by insert my $insertSQL = qq{ INSERT INTO mantis_project_table (name,status,enabled,view_state,access_min,file_path,description) VALU +ES(?,?,?,?,?,?,?); SELECT SCOPE_IDENTITY() }; #Prepare SQL statement for execution my $sth = $dbh->prepare($insertSQL); #Bind parms and parm sql types for insert statement $sth->bind_param( 1, $name, SQL_VARCHAR ); $sth->bind_param( 2, $status, SQL_SMALLINT ); $sth->bind_param( 3, $enabled, SQL_BIT); $sth->bind_param( 4, $view_state, SQL_SMALLINT ); $sth->bind_param( 5, $access_min, SQL_SMALLINT ); $sth->bind_param( 6, $file_path, SQL_VARCHAR ); $sth->bind_param( 7, $description, SQL_LONGVARCHAR); #execute the sql statement on the server $sth->execute(); #get the id value in a varArray to use later -- it could be null (unde +f) my @idarray = $sth->fetchrow_array(); my $id = @idarray ? $idarray[0] : undef; print "the identity column id used this time was: $id \n" ; #clean up $sth->finish(); $dbh->disconnect();

In reply to "Getting Sql server identiy column value after insert by zhirsr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-19 19:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found