Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Ananda Theerthan J: "I have been looking for PHP generator for years and now I am happy that I found one. Yes, its the PHP generator for MySQL. I completely rate 10/10 for this product for making life easier. It has lot of features and capabilities especially the CRUD, lookups and data partitioning. I love this product and recommend to others".
Ran Cole: "We bought the tool last week and want to say how much we love it. We've found it not only powerful, but very user friendly. We have used the tool to create an interface that manages our MySQL DB for different types of users".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnBeforeInsertRecord

This event occurs when the Insert command is executed, and before the actual insertion.

 

Signature:

function OnBeforeInsertRecord ($page, &$rowData, &$cancel, &$message, 

       &$messageDisplayTime, $tableName)

 

Parameters:

$page

An instance of the Page class declared in components/page.php.

$rowData

The associative array of values that corresponds to the currently processed row.

$cancel

The value indicating whether the operation should be canceled.

$message

The message string that is displayed after the operation is completed (or canceled).

$messageDisplayTime

A time interval (in seconds) after which the message will disappear automatically. Default value is 0 (the message will not disappear).

$tableName

The name of processed table.

 

Example 1:

if (!(allowDataEditing())) {

  $cancel = true;

  $message = 'The application is running in read-only mode.';

}

 

Example 2:

The following code allows to assign values to some fields (usually these fields are not included in an insert form)

before inserting of a record:

 

$rowData['line_total'] = $rowData['quantity'] * $rowData['unit_price'];

$rowData['create_datetime'] = SMDateTime::Now();

$rowData['insert_by'] = $page->GetCurrentUserId();    

 

See also: OnBeforeUpdateRecord, OnBeforeDeleteRecord, OnAfterInsertRecord.



Prev Return to chapter overview Next