Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Inserting to a bigint data type in Sybase using prepare statements

by runrig (Abbot)
on Jul 07, 2017 at 15:21 UTC ( [id://1194512]=note: print w/replies, xml ) Need Help??


in reply to Inserting to a bigint data type in Sybase using prepare statements

I have nothing but trouble using Sybase's 'extended' datatypes (bigint is not a 'standard' datatype for Sybase, and e.g., I run into trouble when someone accidentally defines a column as 'date' instead of 'datetime'...we also use Oracle where 'date' is normal).

I'd redefine the column as 'decimal', it has up to 38 digits of precision (so 'decimal(38,0)' for max integer precision), and you won't need all the { TYPE => ... } declarations with the separate bind_param's, you can just bind on the execute() statement.

And, the trouble happens not only in perl, but also in Sybase's 'bcp' utility, which to me is a sign that you should not use these datatypes.

  • Comment on Re: Inserting to a bigint data type in Sybase using prepare statements
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1194512]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-18 02:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found