當前位置: 首頁>>代碼示例>>Java>>正文


Java SentenceExecTransaction類代碼示例

本文整理匯總了Java中com.openbravo.data.loader.SentenceExecTransaction的典型用法代碼示例。如果您正苦於以下問題:Java SentenceExecTransaction類的具體用法?Java SentenceExecTransaction怎麽用?Java SentenceExecTransaction使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


SentenceExecTransaction類屬於com.openbravo.data.loader包,在下文中一共展示了SentenceExecTransaction類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getReservationsUpdate

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsUpdate() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {  

            new PreparedSentence(s
                , "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
            if (((Object[]) params)[3] != null) {
                new PreparedSentence(s
                    , "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
                    , new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);                
            }
            return new PreparedSentence(s
                , "UPDATE RESERVATIONS SET ID = ?, CREATED = ?, DATENEW = ?, TITLE = ?, CHAIRS = ?, ISDONE = ?, DESCRIPTION = ? WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9, 0})).exec(params);
        }
    };
}
 
開發者ID:iMartinezMateu,項目名稱:openbravo-pos,代碼行數:19,代碼來源:DataLogicCustomers.java

示例2: getReservationsInsert

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsInsert() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {  

            int i = new PreparedSentence(s
                , "INSERT INTO RESERVATIONS (ID, CREATED, DATENEW, TITLE, CHAIRS, ISDONE, DESCRIPTION) VALUES (?, ?, ?, ?, ?, ?, ?)"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9})).exec(params);

            if (((Object[]) params)[3] != null) {
                new PreparedSentence(s
                    , "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
                    , new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);                
            }
            return i;
        }
    };
}
 
開發者ID:iMartinezMateu,項目名稱:openbravo-pos,代碼行數:18,代碼來源:DataLogicCustomers.java

示例3: getReservationsUpdate

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsUpdate() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {

            new PreparedSentence(s
                , "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
            if (((Object[]) params)[3] != null) {
                new PreparedSentence(s
                    , "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
                    , new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
            }
            return new PreparedSentence(s
                , "UPDATE RESERVATIONS SET ID = ?, CREATED = ?, DATENEW = ?, TITLE = ?, CHAIRS = ?, ISDONE = ?, DESCRIPTION = ? WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9, 0})).exec(params);
        }
    };
}
 
開發者ID:nordpos,項目名稱:nordpos,代碼行數:19,代碼來源:DataLogicCustomers.java

示例4: getReservationsInsert

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsInsert() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {

            int i = new PreparedSentence(s
                , "INSERT INTO RESERVATIONS (ID, CREATED, DATENEW, TITLE, CHAIRS, ISDONE, DESCRIPTION) VALUES (?, ?, ?, ?, ?, ?, ?)"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9})).exec(params);

            if (((Object[]) params)[3] != null) {
                new PreparedSentence(s
                    , "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
                    , new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
            }
            return i;
        }
    };
}
 
開發者ID:nordpos,項目名稱:nordpos,代碼行數:18,代碼來源:DataLogicCustomers.java

示例5: getReservationsDelete

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsDelete() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {  

            new PreparedSentence(s
                , "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
            return new PreparedSentence(s
                , "DELETE FROM RESERVATIONS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
        }
    };
}
 
開發者ID:iMartinezMateu,項目名稱:openbravo-pos,代碼行數:14,代碼來源:DataLogicCustomers.java

示例6: getReservationsDelete

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
public final SentenceExec getReservationsDelete() {
    return new SentenceExecTransaction(s) {
        public int execInTransaction(Object params) throws BasicException {

            new PreparedSentence(s
                , "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
            return new PreparedSentence(s
                , "DELETE FROM RESERVATIONS WHERE ID = ?"
                , new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
        }
    };
}
 
開發者ID:nordpos,項目名稱:nordpos,代碼行數:14,代碼來源:DataLogicCustomers.java

示例7: init

import com.openbravo.data.loader.SentenceExecTransaction; //導入依賴的package包/類
protected void init() {   
           
    m_paramslocation =  new JParamsLocation();
    m_paramslocation.init(app);
    m_paramslocation.addActionListener(new ReloadActionListener());

    row = new Row(
            new Field("ID", Datas.STRING, Formats.STRING),
            new Field("PRODUCT_ID", Datas.STRING, Formats.STRING),
            new Field(AppLocal.getIntString("label.prodref"), Datas.STRING, Formats.STRING, true, true, true),
            new Field(AppLocal.getIntString("label.prodname"), Datas.STRING, Formats.STRING, true, true, true),
            new Field("LOCATION", Datas.STRING, Formats.STRING),
            new Field("STOCKSECURITY", Datas.DOUBLE, Formats.DOUBLE),
            new Field("STOCKMAXIMUM", Datas.DOUBLE, Formats.DOUBLE),
            new Field("UNITS", Datas.DOUBLE, Formats.DOUBLE)
    );

    lpr = new ListProviderCreator(new PreparedSentence(app.getSession(),
            "SELECT L.ID, P.ID, P.REFERENCE, P.NAME," +
            "L.STOCKSECURITY, L.STOCKMAXIMUM, COALESCE(S.SUMUNITS, 0) " +
            "FROM PRODUCTS P " +
            "LEFT OUTER JOIN (SELECT ID, PRODUCT, LOCATION, STOCKSECURITY, STOCKMAXIMUM FROM STOCKLEVEL WHERE LOCATION = ?) L ON P.ID = L.PRODUCT " +
            "LEFT OUTER JOIN (SELECT PRODUCT, SUM(UNITS) AS SUMUNITS FROM STOCKCURRENT WHERE LOCATION = ? GROUP BY PRODUCT) S ON P.ID = S.PRODUCT " +
            "ORDER BY P.NAME",
            new SerializerWriteBasicExt(new Datas[] {Datas.OBJECT, Datas.STRING}, new int[]{1, 1}),
            new WarehouseSerializerRead()
            ),
            m_paramslocation);
    
    
    SentenceExec updatesent =  new SentenceExecTransaction(app.getSession()) {
        public int execInTransaction(Object params) throws BasicException {
            Object[] values = (Object[]) params;
            if (values[0] == null)  {
                // INSERT
                values[0] = UUID.randomUUID().toString();
                return new PreparedSentence(app.getSession()
                    , "INSERT INTO STOCKLEVEL (ID, LOCATION, PRODUCT, STOCKSECURITY, STOCKMAXIMUM) VALUES (?, ?, ?, ?, ?)"
                    , new SerializerWriteBasicExt(row.getDatas(), new int[] {0, 4, 1, 5, 6})).exec(params);
            } else {
                // UPDATE
                return new PreparedSentence(app.getSession()
                    , "UPDATE STOCKLEVEL SET STOCKSECURITY = ?, STOCKMAXIMUM = ? WHERE ID = ?"
                    , new SerializerWriteBasicExt(row.getDatas(), new int[] {5, 6, 0})).exec(params);
            }
        }
    };     
    
    spr = new SaveProvider(updatesent, null, null);
     
    jeditor = new ProductsWarehouseEditor(dirty);   
}
 
開發者ID:iMartinezMateu,項目名稱:openbravo-pos,代碼行數:53,代碼來源:ProductsWarehousePanel.java


注:本文中的com.openbravo.data.loader.SentenceExecTransaction類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。