From:
<car...@te...> - 2004-01-15 23:12:18
|
Hello: > BLOB SUB_TYPE 1 SEGMENT SIZE 80 CHARACTER SET NONE It's correct, which version of the .NET Data Provider are you using ?? I have tested this with 1.5, and runs fine: FbConnection connection = new FbConnection(connectionString); connection.Open(); string sql = "select clob_field from test where int_field = 1"; FbCommand command = new FbCommand(sql, connection); string value = (string)command.ExecuteScalar(); connection.Close(); -- Best regards Carlos Guzmán Álvarez Vigo-Spain |