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

Subscribe to our news:
Partners
Testimonials
Rickey Steinke: "Folks, I wanted to drop a line and give you a fanatic thank you. I have a project due for my computer application course and without PHP Generator I never would have gotten it done with the professional results your product produced. My sincerest gratitude to each and every team member who brought this program to light".
Craig Cordell: "The simplicity of your code generator is fantastic. We've evaluated dozens of others over the past few years but have yet to find one that is as easy to use as yours".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

ExecSQL

Executes a query that does not return results.

 

Signature:

function ExecSQL($sql)

 

Example:

$sql = "INSERT INTO customer (first_name, last_name, email) VALUES ('John', 'Doe', 'john_doe@example.com')";

$this->GetConnection()->ExecSQL($sql);



Prev Return to chapter overview Next