From: Alexandr B. <ba...@ga...> - 2002-11-29 08:05:10
|
I use FB.Net Beta 1 ( 2002-11-11 ) for ASP.NET This is a piece of code: .... this.fbCommand1.Transaction=this.fbConnection1.BeginTransaction(); this.fbCommand1.CommandText= "SELECT ...."; this.fbDataAdapter1. Fill(this.dataSet1); this.DataGrid1.DataBind(); this.fbCommand1.Transaction.Rollback(); ... It works! But SOMETIMES I get the following annoying error: invalid sqlind value: 538976288 What does it mean and what have I to do? Here is full Error Stack: FirebirdSql.Data.Firebird.FbException: invalid sqlind value: 538976288 at FirebirdSql.Data.Firebird.FbResultset.Fetch() at FirebirdSql.Data.Firebird.FbDataReader.Read() at System.Data.Common.DbDataAdapter.FillLoadDataRow(SchemaMapping mapping) at System.Data.Common.DbDataAdapter.FillFromReader(Object data, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords, DataColumn parentChapterColumn, Object parentChapterValue) at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords) at System.Data.Common.DbDataAdapter.Fill(Object data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet) at Portal.fortday.Page_Load(Object sender, EventArgs e) Best regards, Alexandr Belyakov. |