btw it is my sql script i want to create if the database is not exist:

Code:
CREATE DATABASE transaction;

USE transaction;

CREATE TABLE clients
(
	client_id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
	lastname CHAR(40) NOT NULL,
	firstname CHAR(40) NOT NULL,
	phone CHAR(20) NOT NULL,
	credits CHAR(20) NOT NULL,
)TYPE = MyISAM;
is that possible to execute that in my form? I am using MySQL Server 5.0