Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Trying to know what makes the database non restorable
Message
From
24/03/2017 10:33:56
 
 
To
23/03/2017 19:17:45
General information
Forum:
ASP.NET
Category:
Databases
Environment versions
Environment:
VB 9.0
OS:
Windows 8.1
Network:
Windows Server 2012
Database:
Visual FoxPro
Application:
Web
Miscellaneous
Thread ID:
01649277
Message ID:
01649301
Views:
40
>My data class calls a method to get the schema. It had this:
>
>
>Using loSQLConnection As New SqlConnection(oApp.aConnection(nConnectionString, 1))
>   loSQLConnection.Open()
>   oCommand.Connection = loSQLConnection
>   oDataReader = oCommand.ExecuteReader(CommandBehavior.SchemaOnly)
>   oDataTable = oDataReader.GetSchemaTable
>End Using
>
>
>The loSQLConnection.Open() was not necessary. Once removed, no connectivity remained.
>
>The updated code is as follow:
>
>
>Using loSQLConnection As New SqlConnection(oApp.aConnection(nConnectionString, 1))
>   loSQLConnection.Open()
>   oCommand.Connection = loSQLConnection
>   oDataReader = oCommand.ExecuteReader(CommandBehavior.SchemaOnly)
>   oDataTable = oDataReader.GetSchemaTable
>End Using
>
>
>But, later on, still in the DataAdapter.Fill() command, this applies a permanent connection to something.
>
>
>Using loSQLConnection As New SqlConnection(oApp.aConnection(nConnectionString, 1))
>   oCommand.Connection = loSQLConnection
>   oDataAdapter.Fill(oDataSet)
>End Using
>
>
>When that command executes, something remains stuck in memory. I have tried, oCommand.Connection.Close(), oCommand.Dispose(), oDataAdapter = Nothing and all of that at the same time.
>
>Do you see anything in there that is missing?

IIRC ADO.NET maintains a connection pool and your new SqlConnection() will just grab (or release) an existing connection from the pool. I think there's a ClearPool method - check this:
https://msdn.microsoft.com/en-us/library/8xx3tyca(v=vs.110).aspx
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform