Re: Random letters

2003-03-08 Thread ebgb
Hi all. On Sat, Mar 08, 2003 at 08:03:11AM +0200, Octavian Rasnita wrote: > I know how to create a random number, but could you tell me how can I create > a random string that have numbers and letters? I did it like this: my $stuff = ''; for(1..100) { $stuff .= chr(int rand(96)+32); } w

Re: Linux to MicroSoft SQL Server

2001-11-26 Thread ebgb
On Mon, Nov 26, 2001 at 12:23:56PM -0800, [EMAIL PROTECTED] wrote: > Can and or how do I connect from a Linux server to a Microsoft SQL server?? You can use Perl DBI with DBD::Sybase and freetds (http://www.freetds.org/) to access ms-sql databases. Here's a little script I wrote when I was doing

Re: Needing a script to... [ make .doc files ]

2001-07-20 Thread ebgb
be very handy for work to be able to get inside windows apps and files from my preferred environment. Alternativly has anyone tried anything like having a script running under NT with the OLE hooks and communicating with a script under Un*x over a network connection? Apologies for the long post. I

Re: Crypt function

2001-06-27 Thread ebgb
string. Be wary of passing passwords over http as they can be sniffed, https would be preferred. There's probably better ways of authenticating users. I would be glad to learn them from any of the real programmers on the list. :) Regards. EbGb.