Ask a Question related to Coldfusion Database Access, Design and Development.
-
pwizzard #1
? Sterling Symbol
I've just started using mySQL database as opposed to Access, I have a text
field where it is more than likely the user will enter a ? (Sterling) symbol,
uploading to Access the character displays correctly however to mySQL a (box)
is returned. Any ideas how to get the mySQL working correctly.
pwizzard Guest
-
set var in another symbol?
i have a button in a symbol, when i release the mouseclick, i want it to add the value if 1 to a dyn. txt field in another symbol... var name is... -
Pound Sterling Problem
Hello, I have some Coldfusion code that receives input from a textarea form field and stores it in a MySQL database "text" field. A separate... -
how to get the symbol name
Not direct way : when you attach movie pass this value inside initObject and use it later attaching: me.attachMovie( "L_Id", 'newname', 20 ,... -
how to tell DB2 backslash is a yen symbol
Hello , i am useing db2 udb v8.1 on windows. several tables have field name created with Japanese currency yen symbol together with alpha... -
PHP Luminaries Zeev Suraski, Sterling Hughes,and Thies Arntzen highlight php-con West 2003
Why is php-con the destination of choice for PHP and web developers? Because php-con is about three things: Community. Code. Solutions. php-con... -
bigbrain28 #2
Re: ? Sterling Symbol
I am running MSSQL and just tested this, by typing ALT+0163 into my Windows PC
to create the ? symbol (as it is not a keyboard key here in the US) And had it
insert the data into a nvarchar field in the table and it redisplayed fine. I
guess the question is "what is the field type you are sending the users data
to?" If its straight up text, it should except any acsii char, if its money or
integer/numeric, it's probably not liking the non-numeric ? sign. If the field
is always going to be a Sterling value, I'd say ignore the symbol and display
it on out put with the LSCurrencyFormat tag, if its going to be different
currency types, add another field to designate locale so LSCurrency can use it
to display the proper symbol on output.
bigbrain28 Guest
-
QCH #3
Re: ? Sterling Symbol
Hi,
i also facing the same problem - my customer want the symbol display in the
report (CF Report Builder - PDF).
what i tries is the MYSQL ("??" stored in database ) and the CFM ("?"
display in CFM) can stored and display, good, but when come to report (CF
Report Builder - PDF format) this symbol cannot display :(
Thank you.
Regards,
QCH
QCH Guest
-
BKBK #4
Re: ? Sterling Symbol
The Unicode for the Pound-sterling symbol is u00A3 or 0x00A3, which has a
decimal value of 163. Hence, store the symbol in the database as chr(163). For
example,
<cfquery>
insert into myTable (symbol, amount)
values ('#chr(163)#',29.99)
</cfquery>
BKBK Guest



Reply With Quote

