Examples of VTIContext


Examples of org.apache.derby.vti.VTIContext

    /** Initialize the metadata and scan */
    private void    initScan()  throws SQLException
    {
        try {
            // read the execution context for this AwareVTI
            VTIContext  context = getContext();
            _schema = context.vtiSchema();
            String[]    nameParts = LuceneSupport.decodeFunctionName( context.vtiTable() );
            _table = nameParts[ LuceneSupport.TABLE_PART ];
            _column = nameParts[ LuceneSupport.COLUMN_PART ];

            // divine the column names
            VTITemplate.ColumnDescriptor[]  returnColumns = getReturnTableSignature( _connection );
View Full Code Here

Examples of org.apache.derby.vti.VTIContext

                {
                    AwareVTI awareVTI = (AwareVTI) userVTI;

                    awareVTI.setContext
                        (
                         new VTIContext
                         (
                          vtiSchema,
                          vtiName,
                          activation.getLanguageConnectionContext().getStatementContext().getStatementText()
                          )
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.