参考以下代码
public void testLoadData2 throws SQLException{
String insSql="";
String loadSql="";
Connection conn= this.conn;
StatementImpl stmt = (StatementImpl) conn.createStatement();
stmt.execute(loadSql);
long skippedLines = stmt.getSkippedLines();
PrepareStatement pst = conn.prepareStatement(loadSql);
pst.execute();
skippedLines =((com.gbase.jdbc.PrepareStatement) pst).getSkippedLines();
}