From: Carlos G. A. <car...@te...> - 2003-10-06 15:17:45
|
Hello: > Can you please fix this ? I'm going to add some changes to this, now FbCommand.NextResult will be: internal bool NextResult() { bool returnValue = false; actualCommand++; if (actualCommand >= commands.Length) { actualCommand--; } else { string commandText = commands[actualCommand]; if (commandText != null && commandText.Trim().Length > 0) { statement.Drop(); statement = null; InternalPrepare(); InternalExecute(); returnValue = true; } } return returnValue; } -- Best regards Carlos Guzmán Álvarez Vigo-Spain "Todos somos muy ignorantes. Lo que ocurre es que no todos ignoramos las mismas cosas." Albert Einstein. |