Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Do placeholders work in SET clause of UPDATE query for column datatype of UNSIGNED INT in ASE 15.7+?

After much time wasting I found -- with DBI 1.625, DBD::Sybase 1.14, & ASE 15.7 -- that ...

  • VARCHAR datatype is being used for column of UNSIGNED INT datatype in SET clause of UPDATE query when placeholder is used. The error message is similar to ...
    DBD::Sybase::st execute failed: Server message number=257 severity=16 +state=1 line=0 server=DB_SERVER procedure=DBD2 text=Implicit conversi +on from datatype 'VARCHAR' to 'UNSIGNED INT' is not allowed. Use the + CONVERT function to run this query. Statement= UPDATE db..table SET col = :p1 -- %d WHERE search_col = :p2
  • neither does explicitly setting the datatype help: $sth->bind_param( $place , $var , SQL_INTEGER ) as it produces same error as above;
  • neither does CONVERT function works per above error message (besides the point that I question the value of using a placeholder at all in this case); the following error message is noted in DBD::Sybase ...
    DBD::Sybase::db prepare failed: Server message number=12828 severity=1 +6 state=1 line=1 server=DB_SERVER procedure=DBD2 text=The datatype of + a parameter marker used in the dynamic prepare statement could not b +e resolved. Statement= UPDATE db..table SET col = --? CONVERT( UNSIGNED INT , :p1 ) -- %d WHERE search_col = :p2
  • there is no problem with datatype of numeric(9,0), or after embedding the value right in SQL string sans placeholder;

By way of crude, untested but representative code ...

# SQL. create table pqr ( x numeric(9,0) not null , y unsigned int not null ) insert into pqr values( 0 , 0 ) # Perl $n = 1; # Works. $dbh->do( q/UPDATE pqr SET x = ?/ , undef , $n ); $n = 2; # Fails; $dbh->do( q/UPDATE pqr SET y = ?/ , undef , $n ); $n = 3; # works (same as %s, this is all string in the end). $dbh->do( sprintf q/UPDATE pqr SET y = %d/ , $n );

In reply to DBI 1.625, DBD::Sybase 1.14, ASE 15.7: no placeholder support for UNSIGNED INT datatype in SET clause by Anonymous Monk

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 18:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found