当前位置: 首页>>代码示例>>Java>>正文


Java BaseSentence类代码示例

本文整理汇总了Java中com.openbravo.data.loader.BaseSentence的典型用法代码示例。如果您正苦于以下问题:Java BaseSentence类的具体用法?Java BaseSentence怎么用?Java BaseSentence使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


BaseSentence类属于com.openbravo.data.loader包,在下文中一共展示了BaseSentence类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: jButton1ActionPerformed

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
    // BaseSentence sent = new MetaSentence(m_App.getConnection(), "getTables", new SerializerWriteBasic(new Datas[] {Datas.STRING, Datas.STRING}), null);
    // BaseSentence sent = new MetaSentence(m_App.getConnection(), "getColumns", new SerializerWriteBasic(new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING}), null);
    // executeSentence(sent, new Object[] {null, null, null});

    BaseSentence sent = new BatchSentenceScript(m_App.getSession(), m_jtxtSQL.getText());
    if (executeSentence(sent)) {
        // guardamos la historia.
        if (!m_aHistory.get(m_iHistoryIndex).equals(m_jtxtSQL.getText())) {
            m_iHistoryIndex ++;
            m_aHistory.subList(m_iHistoryIndex, m_aHistory.size()).clear();
            m_aHistory.add(m_jtxtSQL.getText());
            statusButtons();
        }
    }

}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:18,代码来源:JPanelSQL.java

示例2: JRDataSourceBasic

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
/** Creates a new instance of JRDataSourceBasic */
public JRDataSourceBasic(BaseSentence sent, ReportFields fields, Object params) throws BasicException  {   
    
    this.sent = sent;
    SRS = sent.openExec(params);
    m_fields = fields;
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:8,代码来源:JRDataSourceBasic.java

示例3: executeSentence

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
public boolean executeSentence(BaseSentence sent, Object params) {
    
    CardLayout cl = (CardLayout)(getLayout());
    
    try {
        DataResultSet rs = sent.openExec(params);          
        
        if (rs.updateCount() < 0) {
            cl.show(this, "resultset"); 
            
            DataField [] df = rs.getDataField();  

            SQLTableModel sqlresult = new SQLTableModel(df); 

            while (rs.next()) {
                sqlresult.addRow(rs);
            }            
            rs.close();

            sent.closeExec();

            m_jTableResult.setModel(sqlresult);
        } else {
            cl.show(this, "updatecount"); 
            m_txtResulltText.setText("Update count: " + Integer.toString(rs.updateCount()));
            m_txtResulltText.setCaretPosition(0);
       }
        return true;
        
    } catch (BasicException e) {
        cl.show(this, "updatecount"); 
        StringWriter w =  new StringWriter();                    
        e.printStackTrace(new PrintWriter(w));                   
        m_txtResulltText.setText(w.toString());
        m_txtResulltText.setCaretPosition(0);
        // e.printStackTrace();
        return false;
    }
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:40,代码来源:JPanelSQLResult.java

示例4: insertProductCategories

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
private void insertProductCategories() {
    try {        
        for( int i = 100; i < 50000; i++) {
            String sentence =
                    "INSERT INTO m_product_category(" +
                    " m_product_category_id," +
                    " ad_client_id," +
                    " ad_org_id," +
                    " isactive, " +
                    " created, createdby, " +
                    " updated, updatedby, " +
                    " value, " +
                    " name, " +
                    " description, " +
                    " isdefault, plannedmargin, a_asset_group_id) VALUES " +
                    "(" +
                    Integer.toString(i + 1000000) + " ," +
                    " 1000000, " + 
                    " 0, " +
                    "'Y', " +
                    " '2007-01-01', 100, " +
                    " '2007-01-01', 100, " +
                    " 'Fictious Category no " + Integer.toString(i) +"' ," +
                    " 'Fictious Category Name no " + Integer.toString(i) +"' ," +
                    " null," +
                    " 'N'," +
                    " 0," +
                    " null)";
            System.out.println(i);
            System.out.println(sentence);
            BaseSentence sent = new StaticSentence(m_App.getSession(), sentence);
            sent.exec();
        }
    } catch (BasicException e) {
        e.printStackTrace();
    }        
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:38,代码来源:JPanelSQL.java

示例5: JRDataSourceBasic

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
/** Creates a new instance of JRDataSourceBasic
 * @param sent
 * @param fields
 * @param params
 * @throws com.openbravo.basic.BasicException */
public JRDataSourceBasic(BaseSentence sent, ReportFields fields, Object params) throws BasicException  {   
    
    this.sent = sent;
    SRS = sent.openExec(params);
    m_fields = fields;
}
 
开发者ID:gnoopy,项目名称:wifepos,代码行数:12,代码来源:JRDataSourceBasic.java

示例6: getSentence

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
protected BaseSentence getSentence() {
    return new StaticSentence(m_App.getSession()
        , new QBFBuilder(sentence, paramnames.toArray(new String[paramnames.size()]))
        , qbffilter.getSerializerWrite()
        , new SerializerReadBasic(fielddatas.toArray(new Datas[fielddatas.size()])));
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:7,代码来源:PanelReportBean.java

示例7: JPanelSQL

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
/** Creates new form JPanelSQL */
public JPanelSQL(AppView oApp) {
    m_App = oApp;        
    
    m_aHistory = new ArrayList();
    m_aHistory.add("");
    m_iHistoryIndex = 0;
   
    initComponents();
    
    m_iResultIndex = 0;
    addResultTab();
    
    
    DefaultMutableTreeNode rootnode =  new DefaultMutableTreeNode(AppLocal.APP_NAME);
    
    
    SQLDatabase db = new SQLDatabase(AppLocal.APP_NAME + " - Database.");
    
    try {
        BaseSentence sent = new MetaSentence(m_App.getSession(), "getTables"
                , new SerializerWriteBasic(new Datas[] {Datas.STRING, Datas.STRING})
                , new SerializerReadBasic(new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING}));
        DataResultSet rs = sent.openExec( new Object[] {null, null});          
        while (rs.next()) {
            Object[] aTable = (Object[]) rs.getCurrent();
            db.addTable((String) aTable[2]);
        }            
        rs.close();
        sent.closeExec();
        
        sent = new MetaSentence(m_App.getSession(), "getColumns"
                , new SerializerWriteBasic(new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING})
                , new SerializerReadBasic(new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING}));
        rs = sent.openExec(new Object[] {null, null, null}); 
        while (rs.next()) {
            Object[] aColumn = (Object[]) rs.getCurrent();
            SQLTable t = db.getTable((String) aColumn[2]);
            if (t != null) {
                t.addColumn((String) aColumn[3]);
            }
        }            
        rs.close();
        sent.closeExec();
        
    } catch (BasicException e) {
        // e.printStackTrace();
    }        
   

    DefaultTreeModel tm = new DefaultTreeModel(db);
    
    m_jTreeDB.setModel(tm);
    
    statusButtons();
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:57,代码来源:JPanelSQL.java

示例8: executeSentence

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
private boolean executeSentence(BaseSentence sent) {
    return executeSentence(sent, null);
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:JPanelSQL.java

示例9: getSentence

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
/**
 *
 * @return
 */
protected abstract BaseSentence getSentence();
 
开发者ID:gnoopy,项目名称:wifepos,代码行数:6,代码来源:JPanelReport.java

示例10: getSentence

import com.openbravo.data.loader.BaseSentence; //导入依赖的package包/类
protected abstract BaseSentence getSentence(); 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:2,代码来源:JPanelReport.java


注:本文中的com.openbravo.data.loader.BaseSentence类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。