1 34 package smallsql.database; 35 36 42 class StorePageLink { 43 long filePos; 44 TableStorePage page; 45 46 StoreImpl getStore(Table table, SSConnection con, int lock) throws Exception { 47 TableStorePage page = this.page; 48 if(page == null) 49 return table.getStore( con, filePos, lock ); 50 while(page.nextLock != null) page = page.nextLock; 51 return table.getStore( page, lock); 52 } 53 } 54 | Popular Tags |