JDBC Request
注意:必须先配置好 JDBC Connection Configuration
属性 | 描述 | 备注 |
---|---|---|
Variable Name | 选择使用哪个配置,值与JDBC Connection Configuration 的Variable Name相同 | 不能为空。JDBC Connection Configuration 可以配置多个,这里只要选择自己想用的那个即可 |
Query Type | • Select Statement • Update Statement • Callable Statement • Prepared Select Statement • Prepared Update Statement • Commit • Rollback • Autocommit(false) • Autocommit(true) • Edit |
Select 选择Select Statement。Insert, Update, Delete 选择 Update Statement. 2. 如果使用预编译(语句中带问号)必须选择 Prepared Select(Update) Statement (建议使用Prepared) 3. 其他类型不算常用,需要的时候找下资料吧 |
SQL Query | Sql语句 | 不能为空。语句结束建议不要带上分号( |