Thanks Jean and Dawn,
I'm looking for the SDK 15.7 SP137 on the sap web and I can't find it. Someone can tell me the link?
This is the code Jean-Pierre:
-------------------------------------
sql = @"SELECT TOP 3 ...... FROM ..... JOIN .... JOIN .... WHERE ....";
AseCommand cmd = new AseCommand(sql, _cn);
cmd.Parameters.Add("@parameter", AseDbType.Char).Value = "parameterValue";
DataSet ds = new DataSet();
AseDataAdapter da = new AseDataAdapter(cmd);
da.Fill(ds); //In this line sometimes throws the exception "Attempting to read past stream EOM"
-------------------------------------
It is a very easy sql with two joins between tables.
Thanks
Raúl.