示例#1
0
        public void TestReal()
        {
            _mssTableCreator.Real();

            WriteAndVerify(
                "BinaryFloat",
                TestTableCreator.GetBinaryFloatSqlValue());

            ReadAndVerify("real", null, null, null);
        }
示例#2
0
        public void TestFloat20()
        {
            _oraTableCreator.FloatColumn(20);

            WriteAndVerify(
                "Float",
                "Prec", 20,
                TestTableCreator.GetBinaryFloatSqlValue());

            ReadAndVerify("float", null, 20, null);
        }
示例#3
0
        public void TestFloat20()
        {
            _mssTableCreator.FloatColumn(20);

            WriteAndVerify(
                "BinaryFloat",
                TestTableCreator.GetBinaryFloatSqlValue());

            // OBS: Prec <= 24 will result in real and prec=24
            //      Prec > 24 will result in float(53)
            ReadAndVerify("real", null, 24, null);
        }