sql >> Database teknologi >  >> RDS >> Oracle

Intermitterende vb.net oracle forbindelsesproblem

Prøv at ændre din kode for at bortskaffe din OracleCommand-instans, ellers vil du have en ressourcelækage, som kan være årsagen til dine problemer.

Dim connString As New String("Data Source=...")
Using conn As New OracleConnection(connString)
    Using cmd As New OracleCommand()
        Try
            conn.Open()
        Catch ex As OracleException
            logger.LogError(ex.ToString())
            Throw 
        End Try
    End Using
End Using 


  1. SQL Query output i VBA er anderledes end i SQL Oracle

  2. postgresql trådsikkerhed til midlertidige tabeller

  3. OPTION (GENKOMPILER) er altid hurtigere; Hvorfor?

  4. Databasedesign 101