Lines Matching refs:column

45 			the column count
52 /** indicates whether the column is automatically numbered, thus read-only.
53 @param column
54 the first column is 1, the second is 2,
60 boolean isAutoIncrement([in]long column) raises (SQLException);
63 /** indicates whether a column's case matters.
64 @param column
65 the first column is 1, the second is 2,
71 boolean isCaseSensitive([in]long column) raises (SQLException);
74 /** indicates whether the column can be used in a where clause.
75 @param column
76 the first column is 1, the second is 2,
82 boolean isSearchable([in]long column) raises (SQLException);
85 /** indicates whether the column is a cash value.
86 @param column
87 the first column is 1, the second is 2,
93 boolean isCurrency([in]long column) raises (SQLException);
96 …/** indicates the nullability of values in the designated column.@see com::sun::star::sdbc::Column…
97 @param column
98 the first column is 1, the second is 2,
104 long isNullable([in]long column) raises (SQLException);
107 /** indicates whether values in the column are signed numbers.
108 @param column
109 the first column is 1, the second is 2,
115 boolean isSigned([in]long column) raises (SQLException);
118 /** indicates the column's normal max width in chars.
119 @param column
120 the first column is 1, the second is 2,
122 the normal maximum number of characters allowed as the width of the designated column
126 long getColumnDisplaySize([in]long column) raises (SQLException);
129 /** gets the suggested column title for use in printouts and
131 @param column
132 the first column is 1, the second is 2,
134 the suggested column title
138 string getColumnLabel([in]long column) raises (SQLException);
141 /** gets a column's name.
142 @param column
143 the first column is 1, the second is 2,
145 the column name
149 string getColumnName([in]long column) raises (SQLException);
152 /** gets a column's table's schema.
153 @param column
154 the first column is 1, the second is 2,
160 string getSchemaName([in]long column) raises (SQLException);
163 /** gets a column's number of decimal digits.
164 @param column
165 the first column is 1, the second is 2,
171 long getPrecision([in]long column) raises (SQLException);
174 /** gets a column's number of digits to right of the decimal point.
175 @param column
176 the first column is 1, the second is 2,
182 long getScale([in]long column) raises (SQLException);
185 /** gets a column's table name.
186 @param column
187 the first column is 1, the second is 2,
193 string getTableName([in]long column) raises (SQLException);
196 /** gets a column's table's catalog name.
197 @param column
198 the first column is 1, the second is 2,
204 string getCatalogName([in]long column) raises (SQLException);
207 /** retrieves a column's SQL type.
208 @param column
209 the first column is 1, the second is 2,
211 the column type
215 long getColumnType([in]long column) raises (SQLException);
218 /** retrieves a column's database-specific type name.
219 @param column
220 the first column is 1, the second is 2,
226 string getColumnTypeName([in]long column) raises (SQLException);
229 /** indicates whether a column is definitely not writable.
230 @param column
231 the first column is 1, the second is 2,
237 boolean isReadOnly([in]long column) raises (SQLException);
240 /** indicates whether it is possible for a write on the column to succeed.
241 @param column
242 the first column is 1, the second is 2,
248 boolean isWritable([in]long column) raises (SQLException);
251 /** indicates whether a write on the column will definitely succeed.
252 @param column
253 the first column is 1, the second is 2,
259 boolean isDefinitelyWritable([in]long column) raises (SQLException);
265 is called to retrieve a value from the column.
266 @param column
267 the first column is 1, the second is 2,
273 string getColumnServiceName([in]long column) raises (SQLException);