Automatically generate the 'INSERT' SQL string for this table with a batch size of 1 @param catalog_tbl @param db_type @param exclude_columns @return
(
Table catalog_tbl, DatabaseType db_type, int... exclude_columns)
| 458 | * @return |
| 459 | */ |
| 460 | public static String getInsertSQL( |
| 461 | Table catalog_tbl, DatabaseType db_type, int... exclude_columns) { |
| 462 | return SQLUtil.getInsertSQL(catalog_tbl, db_type, 1, exclude_columns); |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Automatically generate the 'INSERT' SQL string for this table |
no test coverage detected