Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 10-14-2004, 04:06 PM   #1 (permalink)
Junkie
 
CBlend's Avatar
 
Location: Classified
[ASP3]Cannot connect to database 2nd time

I have a page that connects to an Access database successfully, displaying all the rows on the page. However, if I hit refresh, I get an error on the line number where I'm opening the connection to the database. If I wait a while, it works.

I have another page that displays a subset of data from the same table and it also shows an error for the line number where the connection is opened.

If I am on the page that shows the whole table, and click a link to go to the subset table, I will get the error. The same is true the other way around. If I wait a while between opening pages that use the table, the page connects as it should.

I close both my connection and recordset and set both of these to Nothing at the end of the document.

What causes me to not be able to connect a second time without waiting?
I am new to ASP, so I hope this doesn't sound stupid. It is hopefully some easy thing I am missing, and hopefully my description may be enough so someone here can tell me what I should do or what topic to read up on!

Thanks, all!
CBlend is offline  
Old 10-14-2004, 06:34 PM   #2 (permalink)
Tilted
 
Location: Orlando
What is the lock type and cursor type of your recordset? You may be locking yourself out. Also, do you close your connection and recordset objects on the page?
gariig is offline  
Old 10-16-2004, 11:57 AM   #3 (permalink)
Junkie
 
CBlend's Avatar
 
Location: Classified
Ok, I got help from someone at work, so I'll put it here:

objConnection.Timeout = 10 <-- Putting this just before opening the connection solved the problem
CBlend is offline  
Old 10-16-2004, 03:52 PM   #4 (permalink)
Crazy
 
Location: Belgium
common practice for accessing databases is to close the connection as soon as possible.
If you close your connection at the end you can get the following situation:
opening connection -> get data -> click on link for sub-table/refresh -> tries to open connection -> error
why? because the connection to that database is already open. (and locked).
After a while the connection will time out, and you can open it again (as you experienced)
a better way instead of setting the standard time-out to a shorter period would be:
opening connection -> get data -> close connection -> click link for subtable/refresh -> open connection -> get data -> close connection.

Now maybe for an access db this kind of practice isn't -that- important, but as soon as you're using bigger multi-user db's, things like this will get quite important.
__________________
Amerika by Franz Kafka
“As Karl Rossman, a poor boy of sixteen who had been packed off to America by his parents because a servant girl had seduced him and got herself a child by him, stood on the liner slowly entering the harbour of New York, a sudden burst of sunshine seemed to illumine the Statue of Liberty, so that he saw it in a new light, although he had sighted it long before. The arm with the sword rose up as if newly stretched aloft, and round the figure blew the free winds of heaven.”
T.U.B. is offline  
Old 10-24-2004, 06:44 PM   #5 (permalink)
Junkie
 
CBlend's Avatar
 
Location: Classified
Thanks for the extra suggestion, T.U.B.! I will try that as well.
CBlend is offline  
 

Tags
2nd, asp3cannot, connect, database, time


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 10:44 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73