Search Results

5
votes

How do I connect to a MSSQL database using Perl’s DBI module in Windows?

Use DBD::ODBC. If you just create a data source with the Control Panel -> System Management -> ODBC Data Sources -> System Data Source or User Data Source (those are the names as I remember them, b …
10
votes

Does Perl’s /m regex modifier match differently on Windows?

For these regexes: m/\015\012/ms m/\015\012/s Both /m and /s are meaningless. /s: makes . match \n …
0
votes

Why “Content-Length: 0” in POST requests?

I suspect the proxy. My guess is that the browser actually doesn't send a Content-Length header, and that the proxy fills it in with the value it "sees": no value == 0. …