(RADIATOR) script question

1999-08-26 Thread Jeff Ragan
Does anyone know of a script to take the output from a mySQL dump and turn it into a properly formatted standard Livingston Radius users file? If so I would greatly appreciate any leads. Thanks.

Re: (RADIATOR) script question

1999-08-26 Thread Hugh Irvine
Hello Jeff - On Fri, 27 Aug 1999, Jeff Ragan wrote: %_Does anyone know of a script to take the output from a mySQL dump and turn it into a properly formatted standard Livingston Radius users file? If so I would greatly appreciate any leads. Thanks. There is a "buildsql" script in the top

(RADIATOR) script question

1999-08-10 Thread Jamie Orzechowski
I have a script that will preform SQL commands via my unix machine .. the problem is that I need to run a large (more than 2 line) SQL statement I have the line: $sth = $dbh-prepare("UPDATE abacbill..logins set Password='$password' where UserName='$username' AND DialAccount = 1"); this is the

Re: (RADIATOR) script question

1999-08-10 Thread Aaron Holtz
Hmmm... in perl it shouldn't matter until it hits the ';'. But how about this? $query = "UPDATE abacbill..logins set Password='$password' where UserName='$username' AND DialAccount = 1"; $sth = $dbh-prepare("$query"); I would think that would work. Unless I'm mis-understanding the