Package com.mobixess.jodb.core.transaction.JODBSession

Examples of com.mobixess.jodb.core.transaction.JODBSession.FieldAndIDRecord


            if(!validRecord && _translatedClassDescriptor != null){
                int nextUnrocessedIndex = _unprocessedFields.nextSetBit(0);
                if(nextUnrocessedIndex == -1){
                    throw new JodbIOException("nextUnrocessedIndex == -1)");
                }
                FieldAndIDRecord fieldAndIDRecord = _translatedClassDescriptor.getAllFields()[nextUnrocessedIndex];
                Class fieldType = fieldAndIDRecord._field.getType();
                record._fieldID = fieldAndIDRecord._id;
                IndexingRecord indexingRecord = IndexingRecord.findIndexingRecord(record._fieldID, _indexes);
                record._fieldTypeName = fieldType.getName();
                record._fieldTypeID = base.getOrSetClassTypeSubstitutionID( record._fieldTypeName );
View Full Code Here

TOP

Related Classes of com.mobixess.jodb.core.transaction.JODBSession.FieldAndIDRecord

Copyright © 2018 www.massapicom. 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.