Guest User

Untitled

a guest
Apr 9th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ANT script ===generate==> myDataBase.sql
  2.  
  3. <target name="dump-database">
  4. <exec executable="mysqldump" output="database-dump.sql">
  5. <arg value="--user=username" />
  6. <arg value="--password=password" />
  7. <arg value="--host=localhost" />
  8. <arg value="--port=3306" />
  9. <arg value="mydatabase" />
  10. </exec>
  11. </target>
Add Comment
Please, Sign In to add comment