1 24 25 package com.mckoi.database; 26 27 36 37 public interface DatabaseProcedure { 38 39 44 Table execute(User user, Object [] args) throws DatabaseException; 45 46 50 DataTable[] getReadTables(DatabaseConnection db) throws DatabaseException; 51 52 56 DataTable[] getWriteTables(DatabaseConnection db) throws DatabaseException; 57 58 63 int getLockingMode(); 64 65 69 void setLockHandle(LockHandle lock_handle); 70 71 } 72 | Popular Tags |