如何在nant脚本中处理表数据?
我想在 nant 脚本内处理我的 mysql 表数据。我的表包含一些图像文件路径。使用该路径我还需要进行 svn check out 。我怎么能这样呢。是否可以使用 nant 脚本获取所有 mysql 表行并循环处理它?
I want to process my mysql table data inside nant script. My table contatins some image file path. using that path I need to do svn check out also. How can I do like that. Does it possible to fetch all mysql table rows using nant script and process it in a loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NAntContrib 中的 NAnt 任务并将结果输出到文件。
http://nantcontrib.sourceforge.net/release/0.91/help/tasks /sql.html
提示:这是一个可以使用的示例 MySql OleDb 连接字符串:
Provider=MySQLProv;Data Source=mydb;User Id=myUsername;Password=myPassword;
使用任务循环文件中的每一行:
http://nant.sourceforge.net/release/0.91/help/tasks /foreach.html
使用 NAntContrib 中的任务从 svn 中签出文件:
http://nantcontrib.sourceforge.net/release/0.91/help /tasks/svn-checkout.html
Use the NAnt task from NAntContrib and output the results to a file.
http://nantcontrib.sourceforge.net/release/0.91/help/tasks/sql.html
Hint: Here is a sample MySql OleDb Connection String that can be used:
Provider=MySQLProv;Data Source=mydb;User Id=myUsername;Password=myPassword;
Use a task to loop over each line in the file:
http://nant.sourceforge.net/release/0.91/help/tasks/foreach.html
Use the task from NAntContrib to checkout the file from svn:
http://nantcontrib.sourceforge.net/release/0.91/help/tasks/svn-checkout.html