Skip to content

Commit 9ab38e2

Browse files
Related to SVY-9377
1 parent 5b32225 commit 9ab38e2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

servoy_shared/src/com/servoy/j2db/dataprocessing/IDataServer.java

+11
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,17 @@ public IDataSet performCustomQuery(String client_id, String server_name, String
101101
public IDataSet[] performQuery(String client_id, String server_name, String transaction_id, QueryData[] array) throws ServoyException, RemoteException;
102102

103103

104+
/**
105+
* @param action from ISQLStatement static fields
106+
* @param server_name server name in lower case to work on
107+
* @param tableName table name in lowercase to work on
108+
* @param pkColumnData must be db compatible types and columns ordered a-z when having mulitple columns
109+
* @param tid transaction id, can be null if not present
110+
* @param sql the SQL to execute
111+
* @param questiondata the data for the question marks (must be db compatible types)
112+
* @return the statement
113+
* @throws RemoteException
114+
*/
104115
public ISQLStatement createSQLStatement(int action, String server_name, String tableName, Object[] pkColumnData, String tid, String sql,
105116
Object[] questiondata) throws RemoteException, RepositoryException;
106117

0 commit comments

Comments
 (0)