<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>> on mouseUp<BR>> <BR>>   put 
empty into field "result"<BR>>   put revdb_connect ("MySQL", 
"myHost", "myBase",<BR>> "mySelf", "myPass") into 
id_dbConnection<BR>>   put "select * from myTable" into 
myQuery<BR>>   put revdb_querylist(id_dbConnection, myQuery) 
into<BR>> field "result"<BR>> <BR>> end mouseUp<BR>You need to pass 
four parameters to revdb_querylist, the first two being the columndelimiter and 
rowdelimiter..if the column and rowdelimiter are left empty then tab and return 
are used.</FONT></DIV>
<DIV> </DIV><FONT face=Arial size=2>
<DIV><BR>on mouseUp<BR>  put revdb_connect ("MySQL", "myHost", 
"myBase",<BR>"mySelf", "myPass") into id_dbConnection<BR> put "select * 
from myTable" into myQuery<BR>put revdb_querylist(,,id_dbConnection, myQuery) 
into<BR>field "result"<BR>get revdb_disconnect(dbConnection)<BR>end 
mouseup</DIV>
<DIV> </DIV>
<DIV>Tuviah</FONT></DIV></BODY></HTML>