iifedy / aseisql

Automatically exported from code.google.com/p/aseisql
0 stars 0 forks source link

--<Menu\Table DDL>-- "numeric" and "decimal" #37

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Data types "numeric" and "decimal" has the same format.

Change in "stubs.sql":

Before:

if (@coltype = 'numeric') select @txt = @txt +
'('+convert(varchar(10),@prec)+','+convert(varchar(10),@scale)+')'

After:

if (@coltype in('numeric', 'decimal')) select @txt = @txt +
'('+convert(varchar(10),@prec)+','+convert(varchar(10),@scale)+')'

Original issue reported on code.google.com by zluis0@gmail.com on 7 Oct 2009 at 11:46

GoogleCodeExporter commented 8 years ago
you are fast to create issues ;)
are you ready to commit changes by yourself?

Original comment by daggett....@gmail.com on 8 Oct 2009 at 4:00

GoogleCodeExporter commented 8 years ago
Issue 38 has been merged into this issue.

Original comment by daggett....@gmail.com on 8 Oct 2009 at 4:01

GoogleCodeExporter commented 8 years ago
Definitely,

That you think of the issues?
are useful? 

Greetings

Original comment by zluis0@gmail.com on 8 Oct 2009 at 2:24

GoogleCodeExporter commented 8 years ago
this one yes.
more, there is a need to review table ddl generation code.
--
those changes committed in revision #129

Original comment by daggett....@gmail.com on 8 Oct 2009 at 6:24