Lines Matching refs:in

8  * "License"); you may not use this file except in compliance
13 * Unless required by applicable law or agreed to in writing,
53 /** is used to update data which is collected in a row.
64 void updateNull([in]long columnIndex) raises (SQLException);
75 void updateBoolean([in]long columnIndex, [in]boolean x) raises (SQLException);
86 void updateByte([in]long columnIndex, [in]byte x) raises (SQLException);
97 void updateShort([in]long columnIndex, [in]short x) raises (SQLException);
108 void updateInt([in]long columnIndex, [in]long x) raises (SQLException);
119 void updateLong([in]long columnIndex, [in]hyper x) raises (SQLException);
130 void updateFloat([in]long columnIndex, [in]float x) raises (SQLException);
141 void updateDouble([in]long columnIndex, [in]double x) raises (SQLException);
152 void updateString([in]long columnIndex, [in]string x) raises (SQLException);
163 void updateBytes([in]long columnIndex, [in]sequence<byte> x) raises (SQLException);
174 void updateDate([in]long columnIndex, [in]com::sun::star::util::Date x)
186 void updateTime([in]long columnIndex, [in]com::sun::star::util::Time x)
198 void updateTimestamp([in]long columnIndex,
199 [in]com::sun::star::util::DateTime x)
213 void updateBinaryStream([in]long columnIndex,
214 [in]com::sun::star::io::XInputStream x,
215 [in]long length) raises (SQLException);
228 void updateCharacterStream([in]long columnIndex,
229 [in]com::sun::star::io::XInputStream x,
230 [in]long length) raises (SQLException);
241 void updateObject([in]long columnIndex, [in]any x)
255 void updateNumericObject([in]long columnIndex, [in]any x, [in]long scale)