Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old April 16th, 2007, 05:55 PM
Simon Gare
Guest
 
Posts: n/a
Default Update Column to add Decimal Point

Hi all,

have a 'money' field in the SQL 2000 table that users enter 200 (for example
which represents £2.00) without the decimal point, what I need is to have a
command or something that adds the decimal point before the last 2 digits,
so user enters 200 and the value stored in the table is 2.00 bearing in mind
that this value could be anything from 1.00 to 50.00.

The user enters the data from an asp page on a touch screen device.

Regards
Simon

--
Simon Gare
The Gare Group Limited

website: www.thegaregroup.co.uk
website: www.privatehiresolutions.co.uk


  #2  
Old April 16th, 2007, 06:15 PM
Evertjan.
Guest
 
Posts: n/a
Default Re: Update Column to add Decimal Point

Simon Gare wrote on 16 apr 2007 in
microsoft.public.inetserver.asp.general:
Quote:
Hi all,
>
have a 'money' field in the SQL 2000 table that users enter 200 (for
example which represents £2.00) without the decimal point, what I need
is to have a command or something that adds the decimal point before
the last 2 digits, so user enters 200 and the value stored in the
table is 2.00 bearing in mind that this value could be anything from
1.00 to 50.00.
>
The user enters the data from an asp page on a touch screen device.
<script language='jscript' runat='server'>

function addDecPoint(x){
var s = (x<0)?'-':'';
x = Math.abs(x);
x=(x<100)?((x+1000)+'').substr(1):''+x;
return s + x.replace(/(\d\d)$/,'.$1');
};

</script>

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
  #3  
Old April 16th, 2007, 07:35 PM
Simon Gare
Guest
 
Posts: n/a
Default Re: Update Column to add Decimal Point

ok,

field in the table is called car_park the asp page is slightly more
difficult as the user enters the data via a .swf file. can this be run as a
command somewhere else, below is the code on the asp file (bearing in mind
that there is not actual text field here) some more assistance would be
appreciated.

Dim id, waiting, carPark
Dim driverNo, sId

Dim sql, conn

Dim sResponse

sResponse = ""

id = Request.Form("id")
waiting = Request.Form("waiting")
carPark = Request.Form("carPark")

driverNo = Request.Form("driverNo")
sId = Request.Form("sId")

If (Len(id) = 0 OR NOT IsNumeric(id)) OR Len(waiting) = 0 OR Len(carPark)
= 0 OR Len(driverNo) = 0 OR Len(sId) = 0 Then
Response.Write("end_done=ERROR")
Response.End()
End If

Set conn = Server.CreateObject("ADODB.Connection")
conn.Open g_connectionString

' Updating booking_form...

sql = "UPDATE booking_form SET waiting_in_minutes='" & waiting & "',
car_park='" & carPark & "', time_cleared=GETDATE(), allocated='COMPLETED'
WHERE ID=" & id

conn.Execute(sql)
Quote:
<script language='jscript' runat='server'>
>
function addDecPoint(x){
var s = (x<0)?'-':'';
x = Math.abs(x);
x=(x<100)?((x+1000)+'').substr(1):''+x;
return s + x.replace(/(\d\d)$/,'.$1');
};
>
</script>

  #4  
Old April 16th, 2007, 08:05 PM
Evertjan.
Guest
 
Posts: n/a
Default Re: Update Column to add Decimal Point

Simon Gare wrote on 16 apr 2007 in
microsoft.public.inetserver.asp.general:

[Please do not toppost on usenet]
Topposting corrected

Quote:
Quote:
>have a 'money' field in the SQL 2000 table that users enter 200 (for
>example which represents £2.00) without the decimal point, what I
>need is to have a command or something that adds the decimal point
>before the last 2 digits, so user enters 200 and the value stored in
>the table is 2.00 bearing in mind that this value could be anything
>from 1.00 to 50.00.
Quote:
Quote:
><script language='jscript' runat='server'>
>>
>function addDecPoint(x){
> var s = (x<0)?'-':'';
> x = Math.abs(x);
> x=(x<100)?((x+1000)+'').substr(1):''+x;
> return s + x.replace(/(\d\d)$/,'.$1');
>};
>>
></script>
Quote:
ok,
>
field in the table is called car_park the asp page is slightly more
difficult as the user enters the data via a .swf file. can this be run
as a command somewhere else, below is the code on the asp file
(bearing in mind that there is not actual text field here) some more
assistance would be appreciated.
>
Dim id, waiting, carPark
Dim driverNo, sId
>
Dim sql, conn
>
Dim sResponse
>
sResponse = ""
>
id = Request.Form("id")
waiting = Request.Form("waiting")
carPark = Request.Form("carPark")
>
driverNo = Request.Form("driverNo")
sId = Request.Form("sId")
>
If (Len(id) = 0 OR NOT IsNumeric(id)) OR Len(waiting) = 0 OR
Len(carPark)
= 0 OR Len(driverNo) = 0 OR Len(sId) = 0 Then
Response.Write("end_done=ERROR")
Response.End()
End If
>
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open g_connectionString
>
' Updating booking_form...
>
sql = "UPDATE booking_form SET waiting_in_minutes='" & waiting &
"',
car_park='" & carPark & "', time_cleared=GETDATE(),
allocated='COMPLETED' WHERE ID=" & id
>
conn.Execute(sql)
Where is your money field you specified in the original posting I added
above???

And you specified a value coming FROM a database, so I would need to se a
SELECT SQL, not an UPDATE SQL, meseems.

================================================== =

You can easily change the integer cents value coming from that field in
vbscript and write that:

<% 'vbs
response.write "£ " & addDecPoint(centsValueFromDatabase)
%>

The jscript part can be put anywhere in the vbs-using asp page,
usually I put it at the bottom.



--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles