Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^3: Avoiding Strange Win32::ODBC Return Values for Integers

by thor (Priest)
on Oct 28, 2005 at 15:06 UTC ( [id://503682]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Avoiding Strange Win32::ODBC Return Values for Integers
in thread Avoiding Strange Win32::ODBC Return Values for Integers (NUL)

So you're saying that you get a 57 with some strange character after it when you just print it as text?

thor

Feel the white light, the light within
Be your own disciple, fan the sparks of will
For all of us waiting, your kingdom will come

  • Comment on Re^3: Avoiding Strange Win32::ODBC Return Values for Integers

Replies are listed 'Best First'.
Re^4: Avoiding Strange Win32::ODBC Return Values for Integers
by jonix (Friar) on Oct 28, 2005 at 15:25 UTC
    That is right - I just wrote it to a file to be able to paste it, but pasting did not work from TextPad.
    It tells me: can not copy... containing null (code=0) characters.
    Notepad.exe does not show it nor complain, but also only shows a space when pasting it.

    Update: It looks like 57.00[] while [] denotes the strange last character.

    Thanks,
    jonix
      I don't know why you're getting a NUL (ASCII character 0) in your output, but here's how we can get rid of it:
      my $nul = chr(0); $value =~ s/$nul//g;
      I would suggest that for all of the values coming out of the database; it's pretty likely that you don't want NULs in your output.

      thor

      Feel the white light, the light within
      Be your own disciple, fan the sparks of will
      For all of us waiting, your kingdom will come

        Yes, thanks - this must be it!
        I will try it asap (after the weekend when I come back to my script) and also take the concise cleaning with regex approach :)

        Some questions still remain though:
        Is MSSQL, the ODBC Driver or Win32::ODBC introducing the NUL values?
        Is it a bug or a feature?

        Thanks again,
        jonix

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-19 20:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found