You could requesturl() a php/asp/perl/whatever script that retrieves the necessary information.
e:
I think a bit of clarifying is in order.
I mean something like this:
PHP Code:
temp.req = requesturl("http://myurl.com/myscript.php?account=Tolnaftate2004");
myscript.php:
PHP Code:
<?php
$host = "localhost";
$user = "joe";
$pass = "mypass";
foreach ($_GET as $index => $val)
$$index = $val;
$conn = mysql_connect($host , $user , $pass);
mysql_select_db('mydb' , $conn);
$res = mysql_query("SELECT * FROM `mytable` WHERE account=$account",$conn);
// print the results in a fashion that can be easily translated into GScript
...
?>
Private data can be encrypted using GScript's md5() function.