The most popular question that can be asked is "How can I
make text output in uppercase?" The answer is a simple one
and we're going to show it to you now.
You should make some changes in Visual Editor tab. We will show all needed
changes with Make field in test MS Access database
(examples.mdb) that comes with ASPRunner Pro.
So, you need to go through a couple of steps.
Steps:
Open ASPRunner/PHPRunner project and proceed to Visual Editor tab
Select View page from Tables list
Right-click over the Make field and choose Properties
In "View as" settings dialog select Custom type and paste to the text area the following code snippet:
PHPRunner Example
$value = strtoupper($value);
ASPRunner Example
value = UCase(value)
Build your project and view results in your favourite browser
Note: Changes in SQL Query maybe different according to database used.
For example, for MSSQL, MySQL, Oracle and Postgre SQL databases you should use
Upper operator instead of Ucase.