I am receiving the following error when applying updates in APS-DB
to a table with a field of type timestamp on a Sybase 6.0.2.2188 database.
I am using the EP eval.

Error # = 80004005(-2147467259)

Description = [Sybase][ODBC Driver][Adaptive Server Anywhere]
Restricted data type attribute violation: cannot convert
08/18/1999 10:55:08 AM to a timestamp

Source = Microsoft OLE DB Provider for ODBC Drivers
SQL State = 07006
Native Error = -157


MY CODE IS AS FOLLOWS:


<%@ Language=VBScript %>
<% Response.Buffer=True %>
<HTML>
<HEAD>

<BODY>

<CENTER>
<%
Set MyDb = Server.CreateObject(&#34;ASPdb.EP&#34
MyDb.dbDBType=&#34;SYBASE&#34;
MyDb.dbDSN=&#34;DSN=etrack6; UID=dba; PWD=sql&#34;
MyDb.dbColor = &#34;4,auto&#34;
MyDb.dbMode = &#34;form&#34;

s=&#34;Select * from CSC.UnitDescr where UnitIdx=&#34;&Session(&#34;UnitIdx&#34

MyDb.dbSQL = s

MyDb.dbImageDir=&#34;images/&#34;
MyDb.dbNavigationIcon = &#34;std&#34;
MyDb.dbNavigation=&#34;Top&#34;
MyDb.dbNavigationItem=&#34;formcol,update&#34;

Mydb.dbEditParams = &#34;TableName=CSC.UnitDescr, BookMarkFlds=UnitIdx, TableTag=Border=2, RecordScope=single, CriteriaSize=4x25&#34;
Mydb.dbEditHideFlds=&#34;UnitIdx&#34;
MyDb.ASPdbEP
%>
</CENTER>
</BODY>
</HTML>


The problem does not occur if, before I push the Apply Updates button,
I change the data value from 08/18/1999 10:55:08 AM to 1999/08/18 10:55:08 AM.
So I thought I might be able to use dbMagicCell to change the data format. It turns
out that dbMagicCell changes the format for the FORM, but not for the edit box; the
same error still occurs.

I hope I am not the only Sybase user using ASP-DB! Thanks for any help.