hey there.
really need ur help.. my problem is I want to insert all value into db in uppercase
this is my code..
before this I put the uppercase around the value..
like this..
but I got an error.
Can anyone help me please..
thanks in advance :)
really need ur help.. my problem is I want to insert all value into db in uppercase
this is my code..
Code:
<cfquery name="insrt_srvy" datasource="#ds#"> INSERT INTO SURVEY_HEADER (REF_NO) VALUES(<cfqueryparam cfsqltype="cf_sql_varchar" value="#ref_no#">) </cfquery>
like this..
Code:
<cfquery name="insrt_srvy" datasource="#ds#"> INSERT INTO SURVEY_HEADER (REF_NO) VALUES(<cfqueryparam cfsqltype="cf_sql_varchar" value=(Upper("#ref_no#"))>) </cfquery>
Can anyone help me please..
thanks in advance :)
Comment