
problems with mySQL "floor/ceiling" function
Hi there,
I'm running into problems with functions "floor/ceiling" when I use
Visual Basic to talk to mySQL through myODBC.
My code looks like this:
sSQL = "select floor(3.2)"
Set rs = MySQL_conn.Execute(sSQL)
I got rs.eof = true after execution of the query. However the following
codes works fine.
sSQL = "select round(3.2)"
Set rs = MySQL_conn.Execute(sSQL)
rs.fields(0)=3
Can anyone tell if this is a bug of myODBC or VB's problem?