Simple.data and Connection closing -
i using simple.data oracle managed data access .
https://github.com/simonh/simple.data.oracle
currently there many connections open , not closed in server. how close same .
sure.
string constr = "user id=scott;password=tiger;data source=oracle"; oracleconnection con = new oracleconnection(constr); con.open(); // stuff con.dispose(); this basic example of how close connection. dispose object.
Comments
Post a Comment