...researching a bit more I found something strange in FbCommand.cs,
at line 602:
string commandText = this.commands[actualCommand];
if (this.commandText != null && this.commandText.Trim().Length > 0)
The test is done with respect to this.commandText, however it is a
local variable (commandText) that should be tested here, or am I
wrong ?
This might be the real cause of my troubles...
Pierre
|