Search results

  1. Crewone

    Probolem with ODBC access

    Casper, my_odbc_sql is just a wrapper for odbc_exec (we also tried odbc_prepare / odbc_execute). Here is a rewrite: --- $db = odbc_connect( "exact", "name", "password" ); for( $i = 0; $i < 300; $i++ ) { echo $i . " \n"; $stmt = odbc_exec( $db, "SELECT * FROM...
  2. Crewone

    Probolem with ODBC access

    Well, that got me one step further. We upgraded to a 10.1C client, but now after 100 statements the following error occurs: -- SQL error: [unixODBC][DataDirect][ODBC Progress OpenEdge Wire Protocol driver][OPENEDGE]SQL engine Statement Mgr statement cache overflowed. 0 statements currently in...
  3. Crewone

    Probolem with ODBC access

    Without the loop (or even less than 100 queries) there are no problems. Is it possible to upgrade just the SQL client? Or is it better to install the complete 10.1B/C package? Sander
  4. Crewone

    Probolem with ODBC access

    Problem with ODBC access After a day of debugging we are running into a problem with the easysoft oob bridge in combination with php5, unixodbc on a 64 bit debian etch machine. We have a progress 10.1A server on windows. Queries work fine, but after 100 "selects" on a single connection we...
Back
Top