hi people,
I have rather an odd question, all the information I have inputted into my aql database is lower case, however, on some of the pages i display i want to retrieve the code in an uppercase format, is their any straight forward way to do it?
Cheers,
I have rather an odd question, all the information I have inputted into my aql database is lower case, however, on some of the pages i display i want to retrieve the code in an uppercase format, is their any straight forward way to do it?
Cheers,
Code:
<% Dim strbasicsearch, strSQL, objConn, objRs strbasicsearch = Request.QueryString ("basicsearch") strSQL = "select * from album where band_name like '%"& strbasicsearch &"%'" Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "dsn=Oracle;uid=user;pwd=pass" Set objRs=objConn.Execute(strSQL) <table> <tr> <td width="400" valign="middle" class="style10"><strong><%=objRs("band_name")%></strong> </td> </tr> </table>
Comment