Oracle PHP Generator FAQ
You are welcome to look through the following Frequently Asked Questions list for getting to know the answers to the most commonly asked questions about Oracle PHP Generator.
If you want to ask a question which is not in the list you may apply to our support team.
What is Oracle PHP Generator?
Oracle PHP Generator is a powerful Oracle GUI frontend that allows you to quickly build a professional-quality, 100% responsive website based on your database without any programming.
Live Demo.
Would it be possible to take a look at a sample web application built by this tool?
Yes, certainly. Enjoy our
online demos. Also you can
download the appropriate project files to get familiar with lots of the Oracle PHP Generator features.
What is the difference between Freeware and Professional versions of Oracle PHP Generator?
How to send a bug report from the program?
To send a bug report, click the
More button at the bottom of the main window, then select the appropriate command from the menu, describe the issue and press the
Send report button in the dialog window to send the prepared report with your default email client.
If you have any problem sending the report directly from Oracle PHP Generator, you can save it to a file and then send that file to
support@sqlmaestro.com as an email attachment.
Is it possible to get a list of changes made in the minor versions?
How can I save my work between Oracle PHP Generator sessions?
Click the More button at the last wizard step and select the Save Project item to save the current configuration.
Is it possible to edit php code generated by Oracle PHP Generator?
Of course you can modify the generated code but, unfortunately, we have no possibility to provide any support on this.
I installed Oracle PHP Generator and generated a first script, but it produces just a blank page.
Try to turn ON the "Force show PHP errors and warnings" option in the
Project Settings dialog. Then refresh the page in the browser to see a more informative error message. It also makes sense to take a look at the web server logs.
Is it possible to execute a custom SQL query from an event handler?
After uploading of a generated project on my webserver I came up with this kind of error: Parse error: syntax error, unexpected T_OBJECT_OPERATOR in my_page.php on line XX.
The code produced by PHP Generator requires PHP 5.2 or higher. Please make sure you have installed the correct PHP version on your webserver.
Does your software support lookup options?
Yes, it does. Moreover, lookup menus are generated automatically if your database contains the appropriate foreign key constraints.
Is it possible to handle many-to-many relationships with Oracle PHP Generator?
What variables can I use in events and templates?
How can I determine the total number of records in the table/view/query using a PHP script created with your product?
Use the mouse hint for the page numbering area:
Can I incorporate features provided by a third-party library in the script created by Oracle PHP Generator?
Yes, PHP Generator allows you to activate third-party components. Find out details in the
corresponding article.
How can I supply pages created by Oracle PHP Generator with look and feel of an existing website?
Is there a way to add a new action link or button to link to a custom php page?
The current version of Oracle PHP Generator doesn't support such feature directly, but there is a simple workaround: you can replace the original content of an existing data column with the required link or button using the
OnCustomRenderColumn event. For example, to display the "Do something" link referencing to the dosomething.php script file instead of the original data stored in the 'data_field' column, specify the event body as follows:
Listing 1.
if ($fieldName == 'data_field')
{
$customText = '<a href="dosomething.php?id=' .$rowData['id'] .'">Do something</a>';
$handled = true;
}
In case your table has no column to replace, create a
custom query based on this table with an additional stub column. Hopefully a more convenient support for row-level command buttons will be added within one of the next releases.
How to add a new link to the application menu?
Is it possible to use variables within the lookup filter condition?
Yes. The correct syntax is as follows: owner_id = %CURRENT_USER_ID%.
I got the following error message: DateTime::__construct() [datetime.--construct]: Failed to parse time string at position 6: Unexpected character.
You have to specify the correct time zone in the php.ini file as described in the
PHP manual.
I want to send an email notification after a user inserts or updates a record.
I set outgoing mail server settings, but emails are not sent
Export to PDF does not work for me as I got the following error message: Fatal error: Allowed memory size of X bytes exhausted (tried to allocate Y bytes) in path_to_file\pdf_renderer.php on line Z.
I have a table with a column storing values computed from an expression that use other columns in the same table. How can I use OnbeforeInsertRecord and OnBeforeUpdateRecord events to add the values automatically?
Suppose, you have a table with the 'totalcost' column which values are calculated using the 'unit_cost' and 'quantity' column values. To fill the column automatically, use the following code at the
OnBeforeInsertRecord and
OnBeforeUpdateRecord events:
Listing 2.
$rowData['totalcost'] = $rowData['unit_cost'] * $rowData['quantity'];
What is the correct syntax for items containing spaces in Combobox and Radio Group editors?
It is as follows: "stored value 1=display value 1","stored value 2=display value 2". For example, 1=Small,2=Large,"3=Extra large".
Is it possible to display NULL values as empty strings?
Which Oracle database server versions are supported by your software?
Oracle PHP Generator can be used with any Oracle database server starting from version 8i. The
Express Edition is supported too.
I'm getting the "ORA-12154: TNS:could not resolve the connect identifier specified" error connecting to a database.
- Make sure that "TNSNAMES" is listed as one of the values of the NAMES.DIRECTORY_PATH parameter in the Oracle Net profile (SQLNET.ORA).
- Verify that a TNSNAMES.ORA file exists and is in the proper directory and is accessible.
- Check that the net service name used as the connect identifier exists in the TNSNAMES.ORA file.
- Make sure there are no syntax errors anywhere in the TNSNAMES.ORA file. Look for unmatched parentheses or stray characters. Errors in a TNSNAMES.ORA file may make it unusable.
For more details, visit
http://ora-12154.ora-code.com/.
I keep on getting the "ORA-XYZAB" error.
Please try to find an answer at http://ora-XYZAB.ora-code.com/ (of course you have to use your error code instead of XYZAB).
I'm getting the "Initialization error Could not locate OCI dll" error message connecting to a database.
First of all, please make sure that you have installed an Oracle client software. Next, you can either copy Oracle libraries from ORAHOME folder to ORAHOME\bin one as described here or specify the OCI.dll location in the command line (for example, changing a desktop shortcut) as follows:
OracleMaestro.exe OCIDLL=<full_path_to_oci.dll>
Example:
OracleMaestro.exe OCIDLL=C:\oraclexe\app\oracle\product\10.2.0\server\BIN\oci.dll
I'm having problems connecting to Oracle with your software under Windows 7 x64.
Try the following solution:
- Download a Win32 version of Oracle Instant Client Basic (not Basic Lite) from the Oracle website.
- Extract all the files from the archive to a directory (e.g. C:\Oracle\incBin).
- Create a directory (e.g. C:\Oracle\incTNS) and copy there your TNSNAMES.ORA.
- Create a new environment variable TNS_ADMIN=C:\Oracle\incTNS.
- Add the C:\Oracle\incBin directory to the system PATH.
After uploading a project on my webserver I came up with this kind of error: Parse error: syntax error, unexpected T_OBJECT_OPERATOR in path\to\project\web\index.php on line 12?
The code produced by PHP Generator requires PHP 5. Please make sure that you have installed the correct PHP version on your webserver.
How can I find out the date of my current product version release?
I am getting the following error when I try to run the php script to load the table data: "Data retrieval errors: Could not connect to : oci8 extension is not supported".
How it is possible to speed up metadata refreshing at the second step of the wizard?
You can create a new user that can access only tables from certain schemas and connect to the database under that user. We're going to provide a more comfortable way in one of the next versions of the software.