Subject Tpb mapping bug
Author Nickolay Samofatov
Hello, David and Roman !

Could you fix line 247 of FBDriver.java.
block
---
mcf.setConnectionRequestInfo(conCri);
mcf.setTpbMapper(tpbMapper);
if (blobBufferLength != null)
--
needs to be replaced with
---
mcf.setConnectionRequestInfo(conCri);
if (tpbMapper != null)
mcf.setTpbMapper(tpbMapper);
if (blobBufferLength != null)
--
otherwise we get NullPointerException if mapping property is not set.
I can commit it myself if you want.

And please think twice before rolling back recent changes because
current driver seems to be much faster than RC1a and I began testing
it and fixing bugs in it.

I get "request synchronization error" with some queries using FB1.5
Alpha 4 and Jaybird RC1a.
Now I'm reconing if this problem is in the core engine or in driver.

--
Best regards,
Nickolay Samofatov mailto:skidder@...