Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
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 ...
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
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
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 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBI 1.625, DBD::Sybase 1.14, ASE 15.7: no placeholder support for UNSIGNED INT datatype in SET clause
by mpeppler (Vicar) on Feb 03, 2023 at 11:41 UTC | |
|
Re: DBI 1.625, DBD::Sybase 1.14, ASE 15.7: no placeholder support for UNSIGNED INT datatype in SET clause
by mpeppler (Vicar) on Jan 20, 2015 at 16:35 UTC | |
by Mr. Muskrat (Canon) on Nov 24, 2015 at 19:04 UTC | |
by Anonymous Monk on Jan 20, 2015 at 19:56 UTC | |
|
Re: DBI 1.625, DBD::Sybase 1.14, ASE 15.7: no placeholder support for UNSIGNED INT datatype in SET clause
by Anonymous Monk on Nov 03, 2014 at 15:13 UTC |