View Javadoc
1 /* 2 * Created on 2003-6-11 14:53:55 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.idbroker; 7 import java.sql.Connection; 8 9 import com.cyclops.dbdigger.DBDiggerException; 10 import com.cyclops.dbdigger.schema.Table; 11 /*** Add description <font color="red">HERE</font>! 12 * 13 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 14 * @since 2003-6-11 14:53:55 15 */ 16 public interface KeyPrefetcher { 17 /*** Method prefectch() in class KeyPrefetcher 18 * @param table Database table 19 * @param dbcon Database connection 20 * @return PrimaryKey object 21 * @throws DBDiggerException db operation exception 22 */ 23 PrimaryKey prefectch(Table table, Connection dbcon) 24 throws DBDiggerException; 25 }

This page was automatically generated by Maven