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?



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to