• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

[Microsoft][ODBC Microsoft Access Driver] Too many client tasks.

 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
anyone face this problem before? i open close the page about 4-5 times and it will start hang and at last prompt out this exception message [Microsoft][ODBC Microsoft Access Driver] Too many client tasks.
can someone give me the solution? thanks in advanced
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I expect you aren't closing the connection after you finish the "page" (whatever that might be). So eventually there are too many open connections and the database refuses to accept any more. So make sure you close the connection when you're finished with it. (Or alternatively, don't keep creating new connections but use an existing connection if there is one available.)
 
kahkean chor
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Clapham wrote:I expect you aren't closing the connection after you finish the "page" (whatever that might be). So eventually there are too many open connections and the database refuses to accept any more. So make sure you close the connection when you're finished with it. (Or alternatively, don't keep creating new connections but use an existing connection if there is one available.)




the connections still exist even i dispose the page?
 
Paul Clapham
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't know. I haven't seen any of your code so I have no idea how you're handling your connections. As for "disposing a page", whatever that means, why would it do anything with those connections?
 
reply
    Bookmark Topic Watch Topic
  • New Topic