Question:
I’ve written several dynamic queries in VB importing a recordset from an Informix DB. The isolation level shows “Committed Read.” Does this place locks on the DB?
Answer:
Committed Read isolation guarantees your application that it will never return a row that has not been committed to the database. The read does not actually place a lock on the fetched row. Rather, it first checks for the existence of an UPDATE lock for any pending updates on that row. If there’s no lock, the query returns the row. If there’s a lock, it is not returned. This is almost as efficient as the dirty read isolation, but if you’re having concurrency problems I’d move it down to DIRTY READ and see if that solves them.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
























