![]() |
|
|||||||
| CoD Multiplayer Everything about multiplayer in IL-2 CoD |
|
|
Thread Tools | Display Modes |
|
#6
|
|||
|
|||
|
Quote:
@I see you're using a DataReader. You can only have 1 DataReader open at a time per connection. using blocks come in handy for those: using( var reader = myCommand.ExecuteReader() ) { while (reader.Read()) { // get values, do stuff } }// reader gets closed You only hint at it in the code in your question (currently), but it's possible that is part of your problem. You haven't shown how you're using the DataReader, so I'm not certain. Just a possibility.@
__________________
![]() Asus P6T V2 Deluxe, I7 930, 3x2 GB RAM XMS3 Corsair1333 Mhz, Nvidia Leadtek GTX 470, Acer 1260p screen projector, Track IR 4 OS ver5, Saitek Pro Flight Rudder, Saitek X52, Win 7 x64 ultimate |
|
|