My database guy is insisting I add "SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED" before the SELECT statement in my queries to avoid database blocking. I have searched but as of yet have not found a way to do this. Using the <SelectClause> of an <operationBinding> with ds.xml files appends the defined text. I need a way to prepend, or even entirely replace the select clause with the select variant described. For some queries I could accept code added to a server side SQLDataSource.executeFetch() solution if one exists. However a client side solution would be preferred as only a handful of queries have needed to involve server side logic.
Thanks
Eric
Thanks
Eric
Comment