Re: Newbit: ADO and MySQL/MyODBC

2001-02-05 Thread Tim Bunce
On Mon, Feb 05, 2001 at 01:36:50PM -0700, Steve Ruby wrote: > Henrik Lebtien Mohr wrote: > > > > Hi there > > > > I use ASP and ADO 2.5 to access the data in my MySQL RDBMS. > > I get an error "Multiple-step error" when I try to update a recordset like > > the following: > > > > with rs > >

Re: Newbit: ADO and MySQL/MyODBC

2001-02-05 Thread Steve Ruby
Henrik Lebtien Mohr wrote: > > Hi there > > I use ASP and ADO 2.5 to access the data in my MySQL RDBMS. > I get an error "Multiple-step error" when I try to update a recordset like > the following: > > with rs > .fields("date") = null 'timestamp datatype > .fields("nOnline") = .

Newbit: ADO and MySQL/MyODBC

2001-02-05 Thread Henrik Lebtien Mohr
Hi there I use ASP and ADO 2.5 to access the data in my MySQL RDBMS. I get an error "Multiple-step error" when I try to update a recordset like the following: with rs .fields("date") = null 'timestamp datatype .fields("nOnline") = .fields("nOnline") + 1 'int datatype .upd