MBaron007 wrote:
> My recordset has the following statement:
> "SELECT * FROM FanExperience WHERE EmployeeID = ? AND
FName = ? AND LName = ?"
>
> In the actualy recordset the TYPE for FName and LName is
TEXT and the Database
> TYPE is CHAR. The EmployeeID is Numeric for both.
> I have re-ordered so the numeric is first and the Text
types are last in the
> sql query and the same result.
> Do I need to move the actual database fields of type
text to the bottom on the
> database?
Yes, the database fields with a datatype of TEXT needs to be
the last
ones. I don't know how it will handle 2 of them, I guess your
about to
find out. You may be able to just change the order of the
columns by
selecting them in your select statement. Don't use *, just
list the
columns in the order you want them, it might work, not 100%
but may give
you a quick indication.
Steve