c# - SQLite transactionscope performance issue -
i'm using ants performance profiler search performance issues within application.
i'm getting high cpu percentage @ using transaction scope following: 
this method called once(when application starts) why give me high percentage? transaction scope bad way select statement gets called once?
edit:
there more methods using method same transactionscope select statement, these methods gets called every 1000ms(1 second).
when delete transactionscope, output window in vs tell me database locks sometimes. recommended me use transactionscope, give me lower performance, should do?
if issuing select statement there no need transaction can safely remove statement.
also, if statement executed once @ application startup wouldn't worry it.
Comments
Post a Comment