<!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>&gt; on mouseUp<BR>&gt; <BR>&gt;&nbsp;&nbsp; put 
empty into field "result"<BR>&gt;&nbsp;&nbsp; put revdb_connect ("MySQL", 
"myHost", "myBase",<BR>&gt; "mySelf", "myPass") into 
id_dbConnection<BR>&gt;&nbsp;&nbsp; put "select * from myTable" into 
myQuery<BR>&gt;&nbsp;&nbsp; put revdb_querylist(id_dbConnection, myQuery) 
into<BR>&gt; field "result"<BR>&gt; <BR>&gt; 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>&nbsp;</DIV><FONT face=Arial size=2>
<DIV><BR>on mouseUp<BR>&nbsp; put revdb_connect ("MySQL", "myHost", 
"myBase",<BR>"mySelf", "myPass") into id_dbConnection<BR>&nbsp;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>&nbsp;</DIV>
<DIV>Tuviah</FONT></DIV></BODY></HTML>