Re: [DB-SIG] should precision and sign of decimal(0) be significant?

2013-05-08 Thread Chris Clark
On Wed, 08 May 2013 12:59:08 +0200, M.-A. Lemburg wrote: On 08.05.2013 11:48, Vernon D. Cole wrote: I am working on code (django-mssql) where I found the following test: ##expected = ( ##Decimal('0.00'), ##Decimal('0.0'), ##Decimal('-

Re: [DB-SIG] should precision and sign of decimal(0) be significant?

2013-05-08 Thread M.-A. Lemburg
On 08.05.2013 11:48, Vernon D. Cole wrote: > I am working on code (django-mssql) where I found the following test: > > ##expected = ( > ##Decimal('0.00'), > ##Decimal('0.0'), > ##Decimal('-0.00')) > ## > ##cur = con.cursor() >

[DB-SIG] should precision and sign of decimal(0) be significant?

2013-05-08 Thread Vernon D. Cole
I am working on code (django-mssql) where I found the following test: ##expected = ( ##Decimal('0.00'), ##Decimal('0.0'), ##Decimal('-0.00')) ## ##cur = con.cursor() ##cur.paramstyle = 'format' # a nonstandard ex