Karma

Results 4 comments of Karma

Is it because ocilib::Date has no corresponding copy constructor?

Why the number of results with `Resultset::GetCount() ` is zero ? But it is valuable after using `Next()` the code snippet: ```c++ ocilib::Statement stmt(conn); stmt.Execute(sql); conn.Commit(); auto rs = stmt.GetResultset();...

Brother, write your own thread pool. The performance of the built-in thread pool feels too low or always error-prone. I have given up using it. Write your own thread pool.