1
XpcSecurity credentials = ud.getCredentials();
    Xpc xpc = new Xpc(credentials);
    xpc.start("training.getEmployees", "select");
    xpc.attrib("id", "10");
   XData result = xpc.run();

• ID が 10 から 30 の従業員を取得したい場合 • タイムスタンプ/日付に基づいてレコードを選択したい場合 • 複数のテーブルを結合してクエリを実行したい場合。

4

2 に答える 2

1

xpc.start( "training.getEmployees"、 "select")のエンティティ "training.getEmployees"に基づくXPCプラグイン(XPCクラスファイル)を使用しているようです。この場合、次のようにします。

XpcSecurity credentials = ud.getCredentials();
Xpc xpc = new Xpc(credentials);
xpc.start("training.getEmployees", "select");
xpc.attrib("idLower", "10");
xpc.attrib("idUpper", "30");
XData result = xpc.run();

runMethod内のXpcプラグイン(おそらく「GetEmployeesXpc」という名前)で、次の手順を実行して、上記のxpcコードを介してデータを渡します。

// Get the method passed through xpc.start
String method = elem.getAttribute("method"); 

// Get the attrib using the following
XData input = new XData(elem);
String upperLimit = input.getText("//idUpper");
String lowerLimit = input.getText("//idLower");

// process the query depending on how you access your data source
if (method.equals("select")) {
    // put your logic here to access your data source
    String query = "select * from employees where id>"+lowerLimit+" &&  id<"+upperLimit";"
     :
     :
} else {
     // Do something else
}

日付/タイムスタンプまたは結合でも同じように実行できます。データを渡し、Xpcプラグインで処理するだけです。

于 2012-11-06T10:52:58.063 に答える
0

私の答えは遅すぎるかもしれませんが、参考のためにこれを試してみてください:

XpcSecurity credentials = ud.getCredentials();
Xpc xpc = new Xpc(credentials);
xpc.start("training.getEmployees","select");

StringBuffer whereClause = new StringBuffer();

//In xpc this is the equivalent of "id between idLower and idUpper"
whereClause.append("<whereClause>\n");
whereClause.append("    <expr op='and' returnType='char'>\n");
whereClause.append("        <expr op='ge' returnType='char'>\n");
whereClause.append("            <operand>id</operand>\n");
whereClause.append("            <operand type='literal'>"+idLower+"</operand>\n");
whereClause.append("        </expr>\n");
whereClause.append("        <expr op='le' returnType='char'>\n");
whereClause.append("            <operand>id</operand>\n");
whereClause.append("            <operand type='literal'>"+idUpper+"</operand>\n");
whereClause.append("        </expr>\n"); whereClause.append("    </expr>\n");
whereClause.append("</whereClause>\n");

xpc.input(whereClause);
XData result = xpc.run();

テーブル結合の場合:

すでに xpc クラスを使用しているようです。このクラスでは、これを初期化関数に入れます。

mapEntity("training.getEmployees");

addLevel("employees");  
mapTable("employee", "employee", null);
mapColumn("employee_id", "employeeId", "employeeId", true, false);
mapColumn("first_name", "firstName", "firstName", false, false);
mapColumn("last_name", "lastName", "lastName", false, false);

mapTable("time_track", "timeTrack", null);
mapColumn("time_track_id", "timeTrackId", "timeTrackId", true, false);
mapColumn("time_in", "timeIn", "timeIn", false, false);
mapColumn("time_out", "timeOut", "timeOut", false, false);
mapColumn("employee_id", "employeeId", "employeeId", false, false);

addJoin("employee", "employeeId", "timeTrack", "employeeId");

これは Select * from employee a internal join time_track b on a.employee_id = b.employee_id と同等です

そして、選択時に条件を適用できるようになりました

于 2013-04-05T06:06:03.007 に答える