Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / July 2007

Tip: Looking for answers? Try searching our database.

int to numeric numeric(18,2) ?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
jobs - 21 Jul 2007 18:11 GMT
I have a column that is numeric(18,2) in sql server.

what type should I use in my sqldatasource parameter in asp.net?
  <asp:Parameter Name="CreditLimit" Type="Int32" />

what type should I use in my vb.net method that updates this?
  ByVal CreditLimit As Integer

What type should I use in my
  parameters.Add("@CreditLimit", SqlDbType.Int).Value = CreditLimit

The list combinations do not work as  on the way to to the database I
can't send 50.00, but if I enter 50 I do get 50.00 back.

Clearly something I've overlooked, I dont see type numeric or money..?
Brandon Gano - 21 Jul 2007 22:28 GMT
Have you tried using the Decimal type in your code? For example (not
tested):

<asp:Parameter Name="CreditLimit" Type="Decimal" />

ByVal CreditLimit As Decimal

>I have a column that is numeric(18,2) in sql server.
>
[quoted text clipped - 11 lines]
>
> Clearly something I've overlooked, I dont see type numeric or money..?
Göran Andersson - 22 Jul 2007 01:32 GMT
> I have a column that is numeric(18,2) in sql server.

The type numeric is a synonym for decimal.

> what type should I use in my sqldatasource parameter in asp.net?
>    <asp:Parameter Name="CreditLimit" Type="Int32" />

Decimal

> what type should I use in my vb.net method that updates this?
>    ByVal CreditLimit As Integer

Decimal

> What type should I use in my
>    parameters.Add("@CreditLimit", SqlDbType.Int).Value = CreditLimit

SqlDbType.Decimal

> The list combinations do not work as  on the way to to the database I
> can't send 50.00, but if I enter 50 I do get 50.00 back.
>
> Clearly something I've overlooked, I dont see type numeric or money..?

Signature

Göran Andersson
_____
http://www.guffa.com


Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.