groovy mysql_使用Groovy的sql模块操作mysql进行多种查询
连接数据库,这里要创建一个sql实例来操作数据库,必须加载jdbc驱动包,使用两个注解,否则会报错:import groovy.sql.Sqlurl='jdbc:mysql://localhost:3307/test?useUnicode=true&characterEncoding=utf8'driver='com.mysql.jdbc.Driver'username='root'pas...