sqlinterface.java

来自「This is source rmi with java」· Java 代码 · 共 11 行

JAVA
11
字号
import java.rmi.*;
public interface SQLInterface extends Remote
{
	void exeScript(String strRead) throws RemoteException;
	void exeSelect(String strSelect) throws RemoteException;
	void exeUpdate(String strUpdate) throws RemoteException;
	String getError() throws RemoteException;
	String getResultUpdate() throws RemoteException;
	String[][] getRowData() throws RemoteException;
	String[] getNameColumn() throws RemoteException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?