This example illustrates how to insert data in table through the build.xml
file by simply running the ant command. In this build.xml
file, we are using 4 property elements for connectivity from database. The first
element <property name="sql.driver"> is used to connect
from the sql driver. The second element <property
name="sql.url"> is used to define the database url and
database name. The third element <property name="sql.user">
is used to define user name of the database. The fourth element <property
name="sql.pass"> is used to define the password name of the
database.
In this build.xml file, <target name="createTables"> is used to execute the query which is in the client.sql and project.sql file and <target name"insertData"> is used to execute the query which is in the insertclient.sql and insertproject.sql file. The source code of the build.xml file is as follows:
|
<project name="MysqlCreateTableAndInsertData" basedir="." default="insertData"> |
client.sql
|
create table client ( |
project.sql
|
create table project ( |
insertclient.sql
|
INSERT INTO client (client_name) VALUES ("Galanthus
nivalis"); |
insertproject.sql
|
INSERT INTO project (project_name) VALUES
("codingdiary.com"); |
Create the all client.sql, project.sql, insertclient.sql, insertproject.sql files parallel of the build.xml file and simply run the build.xml file with ant command in the appropriate path on command prompt. If the program executes successfully, then the following output will be displayed.

|
Recommend the tutorial |


Ask Questions? Discuss: Ant Script to Insert Data in Mysql Table
Post your Comment