public void GetCharsLengthTest()
        {
            string sql = "select clob_field from TEST where int_field = ?";

            BdpCommand command = new BdpCommand(sql, this.Connection);

            command.Parameters.Add("@int_field", BdpType.Int32).Value = 50;

            BdpDataReader reader = command.ExecuteReader();

            reader.Read();

            long length = reader.GetChars(0, 0, null, 0, 0);

            reader.Close();

            Assert.AreEqual(14, length, "Incorrect clob length");
        }