Lines Matching refs:xForm

46 	protected String extractTableName( XPropertySet xForm ) throws com.sun.star.uno.Exception  in extractTableName()  argument
50 Integer aCommandType = (Integer)xForm.getPropertyValue( "CommandType" ); in extractTableName()
51 String sCommand = (String)xForm.getPropertyValue( "Command" ); in extractTableName()
57 xForm.getPropertyValue( "ActiveConnection" ) ); in extractTableName()
91 …protected String composeUniqueyKeyStatement( XPropertySet xForm, String sFieldName ) throws com.su… in composeUniqueyKeyStatement() argument
97 sStatement += extractTableName( xForm ); in composeUniqueyKeyStatement()
115 …protected int generatePrimaryKey( XPropertySet xForm, String sFieldName ) throws com.sun.star.uno.… in generatePrimaryKey() argument
119 XConnection.class, xForm.getPropertyValue( "ActiveConnection" ) ); in generatePrimaryKey()
124 String sStatement = composeUniqueyKeyStatement( xForm, sFieldName ); in generatePrimaryKey()
150 …public void insertPrimaryKey( XPropertySet xForm, String sFieldName ) throws com.sun.star.uno.Exce… in insertPrimaryKey() argument
153 Integer aConcurrency = (Integer)xForm.getPropertyValue( "ResultSetConcurrency" ); in insertPrimaryKey()
158 XColumnsSupplier.class, xForm ); in insertPrimaryKey()
163 xCol.updateInt( generatePrimaryKey( xForm, sFieldName ) ); in insertPrimaryKey()
194 public void defaultNewRecordFocus( XPropertySet xForm ) throws com.sun.star.uno.Exception in defaultNewRecordFocus() argument
197 XIndexAccess.class, xForm ); in defaultNewRecordFocus()
361 public KeyGenerator( XPropertySet xForm, String sFieldName, in KeyGenerator() argument
364 m_xForm = xForm; in KeyGenerator()
366 DocumentHelper aDocument = DocumentHelper.getDocumentForComponent( xForm, xCtx ); in KeyGenerator()