MS Access ODBC error with PHP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • coder10
    New Member
    • Mar 2010
    • 3

    MS Access ODBC error with PHP

    Anyone know what could this be and how to resolve

    Fatal error: Call to undefined function getodbcrowscoun t()

    The php with following line code $rows = GetODBCRowsCoun t($dbResult);
    is placed in xampp\htdocs folder
  • Atli
    Recognized Expert Expert
    • Nov 2006
    • 5062

    #2
    Hey.

    The error message is pretty clear. Your code is trying to use a function, "getodbcrowscou nt", that does not exist. - I can't find a reference to that function in the manual, so I assume this is a custom function. (Closest I can find is odbc_num_rows.)

    My first guess would be that you are missing a include to some library file. Try searching the files in your application and try to locate it, and if you find it include it in the file that is generating this error.

    Comment

    Working...