File: SqlDecimal.cs

package info (click to toggle)
mono 2.6.7-5.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 327,344 kB
  • ctags: 413,649
  • sloc: cs: 2,471,883; xml: 1,768,594; ansic: 350,665; sh: 13,644; makefile: 8,640; perl: 1,784; asm: 717; cpp: 209; python: 146; sql: 81; sed: 16
file content (897 lines) | stat: -rw-r--r-- 29,508 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
// System.Data.SqlTypes.SqlDecimal
//
// Authors:
//	Konstantin Triger <kostat@mainsoft.com>
//	Boris Kirzner <borisk@mainsoft.com>
//	
// (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

namespace System.Data.SqlTypes
{

    /**
     * <p>Title: </p>
     * <p>Description: </p>
     * <p>Copyright: Copyright (c) 2002</p>
     * <p>Company: MainSoft</p>
     * @author Pavel Sandler
     * @version 1.0
     */

    using System;

    using java.math;

    /*
    * CURRENT LIMITATIONS:
    * 1. public byte[] Data not implemented.
    * 2. public byte[] BinData not implemented.
    * 3. Precision value is ignored.
    * 4. public SqlDecimal AdjustScale(SqlDecimal n, int position) not implemented.
    * 5. public SqlDecimal ConvertToPrecScale(SqlDecimal n, int precision, int scale) not implemented.
    */


    public struct SqlDecimal : INullable
    {

        private Decimal _value;
        private bool _isNull;

        public static readonly SqlDecimal MaxValue = new SqlDecimal(Decimal.MaxValue);
        public static readonly SqlDecimal MinValue = new SqlDecimal(Decimal.MinValue);
        public static readonly int MaxPrecision = 38;
        public static readonly int MaxScale = MaxPrecision;
        public static readonly SqlDecimal Null = new SqlDecimal(true);

        private int _precision;
        private int _scale;
        

        private SqlDecimal(bool isNull)
        {
            _value = Decimal.Zero;
            _isNull = isNull;
            _precision = 38;
            _scale = 0;
        }
        /**
         * Initializes a new instance of the SqlDecimal instance using the supplied Decimal value.
         * @param value The Decimal value to be stored as a SqlDecimal instance.
         */
        public SqlDecimal(Decimal value) 
        {
            _value = value;
            _isNull = false;
            int[] bits = Decimal.GetBits(value);
            int i = bits[3] & 0xff0000;
            _scale = i >> 16;
            _precision = 38;
        }

        /**
         * Initializes a new instance of the SqlDecimal instance using the supplied double value.
         * @param value The double value to be stored as a SqlDecimal instance.
         */
        public SqlDecimal(double value) 
        { 
            _value = new Decimal(value);
            _isNull = false; 
            int[] bits = Decimal.GetBits(_value);
            int i = bits[3] & 0xff0000;
            _scale = i >> 16;
            _precision = 38;
        }

        /**
         * Initializes a new instance of the SqlDecimal instance using the supplied int value.
         * @param value The int value to be stored as a SqlDecimal instance.
         */
        public SqlDecimal(int value) 
        {
            _value = new Decimal(value);
            _isNull = false;
            int[] bits = Decimal.GetBits(_value);
            int i = bits[3] & 0xff0000;
            _scale = i >> 16;
            _precision = 38;
        }

        /**
         * Initializes a new instance of the SqlDecimal instance using the supplied long value.
         * @param value The long value to be stored as a SqlDecimal instance.
         */
        public SqlDecimal(long value) 
        {
            _value = new Decimal(value);
            _isNull = false;
            int[] bits = Decimal.GetBits(_value);
            int i = bits[3] & 0xff0000;
            _scale = i >> 16;
            _precision = 38;
        }

        
        /**
         * Indicates whether or not Value is null.
         * @return true if Value is null, otherwise false.
         */
        public bool IsNull
        {
            get
            {
                return _isNull;
            }
        }

        /**
         * Gets the value of the SqlDecimal instance.
         * @return the value of this instance
         */
        public Decimal Value
        {
            get
            {
                if(IsNull)
                    throw new SqlNullValueException();
                return _value;
            }
        }

        public byte[] BinData
        {
            get
            {
                /** @todo implement this method */
                throw new NotImplementedException();
            }
        }

        public byte[] Data
        {
            get
            {
                /** @todo implement this method */
                throw new NotImplementedException();
            }
        }

        /**
         * Indicates whether or not the Value of this SqlDecimal instance is greater than zero.
         * @return true if the Value is assigned to null, otherwise false.
         */
        public bool IsPositive
        {
            get
            {
                if (!IsNull)
                {
                    if (_value >= 0)
                        return true;

                    return false;
                }
            
                throw new SqlNullValueException("The value of this instance is null");
            }
        }

        /**
         * Gets the maximum number of digits used to represent the Value property.
         * @return The maximum number of digits used to represent the Value of this SqlDecimal instance.
         */
        public int Precision
        {
            get
            {
                return _precision;
            }
        }

        /**
         * Gets the number of decimal places to which Value is resolved.
         * @return The number of decimal places to which the Value property is resolved.
         */
        public int Scale
        {
            get
            {
                return  _precision;
            }
        }

        /**
         * The Abs member function gets the absolute value of the SqlDecimal parameter.
         * @param n A SqlDecimal instance.
         * @return A SqlDecimal instance whose Value property contains the unsigned number representing the absolute value of the SqlDecimal parameter.
         */
        public static SqlDecimal Abs(SqlDecimal n)
        {
            if (n.IsNull)
                return new SqlDecimal();

            Decimal val;

            if (n.IsPositive)
                val = n.Value;
            else
                val = Decimal.Negate(n._value);

            return new SqlDecimal(val);

        }

        /**
         * Calcuates the sum of the two SqlDecimal operators.
         * @param x A SqlDecimal instance.
         * @param y A SqlDecimal instance.
         * @return A new SqlDecimal instance whose Value property contains the sum.
         * If one of the parameters or their value is null return SqlDecimal.Null.
         */
        public static SqlDecimal Add(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlDecimal.Null;

            Decimal res = Decimal.Add(x._value, y._value);

            return new SqlDecimal(res);
        }

        public static SqlDecimal AdjustScale(SqlDecimal n, int digits, bool fround)
        {
            /** @todo find out what the logic */
            throw new NotImplementedException();
        }

        /**
         * Returns the smallest whole number greater than or equal to the specified SqlDecimal instance.
         * @param n The SqlDecimal instance for which the ceiling value is to be calculated.
         * @return A SqlDecimal representing the smallest whole number greater than or equal to the specified SqlDecimal instance.
         */
        public static SqlDecimal Ceiling(SqlDecimal n)
        {
            if (n.IsNull)
                return SqlDecimal.Null;

            double d = Math.Ceiling((double)n._value);
            return new SqlDecimal(d);
        }

        /**
         * Compares this instance to the supplied object and returns an indication of their relative values.
         * @param obj The object to compare.
         * @return A signed number indicating the relative values of the instance and the object.
         * Less than zero This instance is less than object.
         * Zero This instance is the same as object.
         * Greater than zero This instance is greater than object -or-
         * object is a null reference.
         */
        public int CompareTo(Object obj)
        {
            if (obj == null)
                return 1;

            if (obj is SqlDecimal)
            {
                SqlDecimal value = (SqlDecimal)obj;
                
                if (IsNull)
                    return -1;

                if (value.IsNull)
                    return 1;

                if (_value == value._value)
                    return 0;

                return Decimal.Compare(_value, value._value);
            }

            throw new ArgumentException("parameter obj is not SqlDecimal : " + obj.GetType().Name);


        }


        public SqlDecimal ConvertToPrecScale(SqlDecimal n, int precision, int scale)
        {
            /** @todo find out what the logic */
            throw new NotImplementedException();
        }

        /**
         * The division operator divides the first SqlDecimal operand by the second.
         * @param x A SqlDecimal instance.
         * @param y A SqlDecimal instance.
         * @return A SqlDecimal instance containing the results of the division operation.
         * If one of the parameters is null or null value - return SqlDouble.Null.
         */
        public static SqlDecimal Divide(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlDecimal.Null;

            Decimal res = Decimal.Divide(x._value, y._value);

            return new SqlDecimal(res);
        }

        public override bool Equals(Object obj)
        {
            if (obj == null)
                return false;

            if (obj is SqlDecimal)
            {
                SqlDecimal dec = (SqlDecimal)obj;

                return Decimal.Equals(_value, dec._value);
            }

            return false;
        }

        
        /**
         * Performs a logical comparison on two instances of SqlDecimal to determine if they are equal.
         * @param x A SqlDecimal instance.
         * @param y A SqlDecimal instance.
         * @return true if the two values are equal, otherwise false.
         * If one of the parameters is null or null value return SqlBoolean.Null.
         */
        public static SqlBoolean Equals(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlBoolean.Null;

            if (x.Equals(y))
                return SqlBoolean.True;

            return SqlBoolean.False;
        }

        /**
         * Rounds a specified SqlDecimal number to the next lower whole number.
         * @param n The SqlDecimal instance for which the floor value is to be calculated.
         * @return A SqlDecimal instance containing the whole number portion of this SqlDecimal instance.
         */
        public static SqlDecimal Floor(SqlDecimal n)
        {
            Decimal res = Decimal.Floor(n._value);

            return new SqlDecimal(res);
        }

        /**
         * Compares two instances of SqlDecimal to determine if the first is greater than the second.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return A SqlBoolean that is True if the first instance is greater than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean GreaterThan(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlBoolean.Null;

            if (x.CompareTo(y) > 0)
                return SqlBoolean.True;

            return SqlBoolean.False;
        }

        /**
         * Compares two instances of SqlDecimal to determine if the first is greater than or equal to the second.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return A SqlBoolean that is True if the first instance is greaater than or equal to the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean GreaterThanOrEqual(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlBoolean.Null;

            if (x.CompareTo(y) >= 0)
                return SqlBoolean.True;

            return SqlBoolean.False;
        }

        /**
         * Compares two instances of SqlDecimal to determine if the first is less than the second.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean LessThan(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlBoolean.Null;

            if (x.CompareTo(y) < 0)
                return SqlBoolean.True;

            return SqlBoolean.False;
        }

        /**
         * Compares two instances of SqlDecimal to determine if the first is less than the second.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return A SqlBoolean that is True if the first instance is less than the second instance, otherwise False.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean LessThanOrEqual(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlBoolean.Null;

            if (x.CompareTo(y) <= 0)
                return SqlBoolean.True;

            return SqlBoolean.False;
        }

        /**
         * The multiplication operator computes the product of the two SqlDecimal operands.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return The product of the two SqlDecimal operands.
         */
        public static SqlDecimal Multiply(SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull)
                return SqlDecimal.Null;

            Decimal res = Decimal.Multiply(x._value, y._value);

            return new SqlDecimal(res);
        }

        /**
         * Compares two instances of SqlDecimal to determine if they are equal.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return A SqlBoolean that is True if the two instances are not equal or False if the two instances are equal.
         * If either instance of SqlDouble is null, the Value of the SqlBoolean will be Null.
         */
        public static SqlBoolean NotEquals(SqlDecimal x, SqlDecimal y)
        {
            SqlBoolean eVal = Equals(x, y);

            if (eVal.IsNull)
                return eVal;
            if (eVal.IsTrue)
                return SqlBoolean.False;

            return SqlBoolean.True;
        }

        /**
         * Converts the String representation of a number to its Decimal number equivalent.
         * @param s The String to be parsed.
         * @return A SqlDecimal containing the value represented by the String.
         */
        public static SqlDecimal Parse(String s)
        {
            Decimal val = Decimal.Parse(s);
            SqlDecimal retVal = new SqlDecimal(val);

            if (GreaterThan(retVal, MaxValue).IsTrue || LessThan(retVal, MinValue).IsTrue)
                throw new OverflowException("The parse of this string is overflowing : " + val);

            return retVal;

        }

        /**
         * Raises the value of the specified SqlDecimal instance to the specified exponential power.
         * @param n The SqlDecimal instance to be raised to a power.
         * @param exponent A double value indicating the power to which the number should be raised.
         * @return A SqlDecimal instance containing the results.
         */
        public static SqlDecimal Power(SqlDecimal n, double exponent)
        {
            /** @todo decide if we treat the Decimal as a double and use Math.pow() */
            
            double d = (double)n._value;

            d = java.lang.Math.pow(d, exponent);

            return new SqlDecimal(d);
        }

        /**
         * Gets the number nearest the specified SqlDecimal instance's value with the specified precision.
         * @param n The SqlDecimal instance to be rounded.
         * @param position The number of significant fractional digits (precision) in the return value.
         * @return A SqlDecimal instance containing the results of the rounding operation.
         */
        public static SqlDecimal Round(SqlDecimal n, int position)
        {
            Decimal val = Decimal.Round(n._value, position);

            return new SqlDecimal(val);
        }

        /**
         * Gets a value indicating the sign of a SqlDecimal instance's Value property.
         * @param n The SqlDecimal instance whose sign is to be evaluated.
         * @return A number indicating the sign of the SqlDecimal instance.
         */
        public static int Sign(SqlDecimal n)
        {
            if (n._value < 0)
                return -1;
            if(n._value > 0)
                return 1;
            return 0;
        }

        /**
         * The subtraction operator the second SqlDecimal operand from the first.
         * @param x A SqlDecimal instance
         * @param y A SqlDecimal instance
         * @return The results of the subtraction operation.
         */
        public static SqlDecimal Subtract(SqlDecimal x, SqlDecimal y)
        {
            Decimal val = Decimal.Subtract(x._value, y._value);
            SqlDecimal retVal = new SqlDecimal(val);

            return retVal;

        }

        /**
         * Returns the a double equal to the contents of the Value property of this instance.
         * @return The decimal representation of the Value property.
         */
        public double ToDouble()
        {
            return Decimal.ToDouble(_value);
        }

        /**
         * Converts this SqlDecimal instance to SqlBoolean.
         * @return A SqlBoolean instance whose Value will be True if the SqlDecimal instance's Value is non-zero,
         * False if the SqlDecimal is zero
         * and Null if the SqlDecimal instance is Null.
         */
        public SqlBoolean ToSqlBoolean()
        {
            if (IsNull)
                return SqlBoolean.Null;

            return new SqlBoolean(!_value.Equals(Decimal.Zero));
        }

        /**
         * Converts this SqlDecimal instance to SqlByte.
         * @return A SqlByte instance whose Value equals the Value of this SqlDouble instance.
         */
        public SqlByte ToSqlByte()
        {
            if (IsNull)
                return SqlByte.Null;

            return new SqlByte(checked((byte)_value));
        }

        /**
         * Converts this SqlDecimal instance to SqlDouble.
         * @return A SqlDouble instance whose Value equals the Value of this SqlDecimal instance.
         */
        public SqlDouble ToSqlDouble()
        {
            if (IsNull)
                return SqlDouble.Null;

            return new SqlDouble((double)_value);
        }

        /**
         * Converts this SqlDouble structure to SqlInt16.
         * @return A SqlInt16 structure whose Value equals the Value of this SqlDouble structure.
         */
        public SqlInt16 ToSqlInt16()
        {
            if (IsNull)
                return SqlInt16.Null;

            return new SqlInt16(checked((short)_value));
        }

        /**
         * Converts this SqlDouble structure to SqlInt32.
         * @return A SqlInt32 structure whose Value equals the Value of this SqlDouble structure.
         */
        public SqlInt32 ToSqlInt32()
        {
            if (IsNull)
                return SqlInt32.Null;

            return new SqlInt32(checked((int)_value));
        }

        /**
         * Converts this SqlDecimal structure to SqlInt64.
         * @return A SqlInt64 structure whose Value equals the Value of this SqlDecimal structure.
         */
        public SqlInt64 ToSqlInt64()
        {
            if (IsNull)
                return SqlInt64.Null;

            return new SqlInt64(checked((long)_value));
        }

        /**
         * Converts this SqlDecimal instance to SqlDouble.
         * @return A SqlMoney instance whose Value equals the Value of this SqlDecimal instance.
         */
        public SqlMoney ToSqlMoney()
        {
            if (IsNull)
                return SqlMoney.Null;

            return new SqlMoney(_value);
        }

        /**
         * Converts this SqlDecimal instance to SqlSingle.
         * @return A SqlSingle instance whose Value equals the Value of this SqlDecimal instance.
         */
        public SqlSingle ToSqlSingle()
        {
            if (IsNull)
                return SqlSingle.Null;

            return new SqlSingle(checked((float)_value));
        }

        /**
         * Converts this SqlDecimal structure to SqlString.
         * @return A SqlString structure whose value is a string representing the date and time contained in this SqlDecimal structure.
         */
        public SqlString ToSqlString()
        {
            return new SqlString(ToString());
        }


        public override String ToString()
        {
            if (IsNull)
                return "null";

            return _value.ToString();
        }

        /**
         * Truncates the specified SqlDecimal instance's value to the desired position.
         * @param n The SqlDecimal instance to be truncated.
         * @param position The decimal position to which the number will be truncated.
         * @return Supply a negative value for the position parameter in order to truncate the value to the corresponding positon to the left of the decimal point.
         */
        public static SqlDecimal Truncate(SqlDecimal n, int position)
        {
            if (n.IsNull)
                return n;
            
            Decimal tmp = Decimal.Round(n._value, position);

            return new SqlDecimal(tmp);
        }

        public override int GetHashCode()
        {
            return _value.GetHashCode();
        }
        
        public static SqlDecimal operator + (SqlDecimal x, SqlDecimal y)
        {
            if(x.IsNull || y.IsNull)
                return SqlDecimal.Null;

            return new SqlDecimal(x.Value + y.Value);
        }

        public static SqlDecimal operator / (SqlDecimal x, SqlDecimal y)
        {
            if(x.IsNull || y.IsNull)
                return SqlDecimal.Null;
            return new SqlDecimal (x.Value / y.Value);
        }

        public static SqlBoolean operator == (SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value == y.Value);
        }

        public static SqlBoolean operator > (SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value > y.Value);
        }

        public static SqlBoolean operator >= (SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value >= y.Value);
        }

        public static SqlBoolean operator != (SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value != y.Value);
        }

        public static SqlBoolean operator < (SqlDecimal x, SqlDecimal y)
        {

            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value < y.Value);

        }

        public static SqlBoolean operator <= (SqlDecimal x, SqlDecimal y)
        {
            if (x.IsNull || y.IsNull) 
                return SqlBoolean.Null;

            return new SqlBoolean(x.Value <= y.Value);
        }

        public static SqlDecimal operator * (SqlDecimal x, SqlDecimal y)
        {
            // adjust the scale to the smaller of the two beforehand
            if (x.Scale > y.Scale)
                x = SqlDecimal.AdjustScale(x, y.Scale - x.Scale, true);
            else if (y.Scale > x.Scale)
                y = SqlDecimal.AdjustScale(y, x.Scale - y.Scale, true);

            return new SqlDecimal(x.Value * y.Value);
        }

        public static SqlDecimal operator - (SqlDecimal x, SqlDecimal y)
        {
            if(x.IsNull || y.IsNull)
                return SqlDecimal.Null;

            return new SqlDecimal(x.Value - y.Value);
        }

        public static SqlDecimal operator - (SqlDecimal n)
        {
            if(n.IsNull)
                return n;
            return new SqlDecimal (Decimal.Negate(n.Value));
        }

        public static explicit operator SqlDecimal (SqlBoolean x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.ByteValue);
        }

        public static explicit operator Decimal (SqlDecimal n)
        {
            return n.Value;
        }

        public static explicit operator SqlDecimal (SqlDouble x)
        {
            checked 
            {
                if (x.IsNull) 
                    return Null;
                else
                    return new SqlDecimal ((decimal)x.Value);
            }
        }

        public static explicit operator SqlDecimal (SqlSingle x)
        {
            checked 
            {
                if (x.IsNull) 
                    return Null;
                else
                    return new SqlDecimal ((decimal)x.Value);
            }
        }

        public static explicit operator SqlDecimal (SqlString x)
        {
            checked 
            {
                return Parse (x.Value);
            }
        }

        public static implicit operator SqlDecimal (decimal x)
        {
            return new SqlDecimal (x);
        }

        public static implicit operator SqlDecimal (SqlByte x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.Value);
        }

        public static implicit operator SqlDecimal (SqlInt16 x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.Value);
        }

        public static implicit operator SqlDecimal (SqlInt32 x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.Value);
        }

        public static implicit operator SqlDecimal (SqlInt64 x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.Value);
        }

        public static implicit operator SqlDecimal (SqlMoney x)
        {
            if (x.IsNull) 
                return Null;
            else
                return new SqlDecimal ((decimal)x.Value);
        }

    }
}