Hi Guys,

Having problems with the download features using the EP and Oracle 8.05.

Try the following. You will get a "Function Error". Only way for it to work it to remove all number types from all SQL statements.

Let me know the fix.

Nick

<%Response.Buffer=True
Set MyDb = Server.CreateObject(&#34;AspDB.EP&#34
MyDb.dbDSN=&#34;DSN=local; UID=scott; PWD=tiger;&#34;
MyDb.dbUnit = 1
Mydb.DbCSVDelimiter=&#34;,&#34;
Mydb.dbCSVName=&#34;test.xls&#34;
MyDb.dbSQL = &#34;Select * from SALGRADE&#34;
MyDb.dbNavigationItem=&#34;top, bottom, next, prev, download,&#34;
MyDb.dbGridIndex=False &#39;Show the first &#34;index&#34; column
Mydb.dbMemoTextSize=-1 &#39;Set size of memo: Obj.dbMemoTextSize = 0 | -1 | Long
Mydb.dbDBType = &#34;ORACLE&#34; &#39;Database type: Obj.dbDBType=&#34;ACCESS(def)|SQL|ORACLE[,server]|SYBASE| FOXPRO|EXCEL|TXT&#34;
MyDb.aspDBEP
%>