Home | History | Annotate | Download | only in database

Lines Matching refs:col

127      * @param col
130 public boolean putBlob(byte[] value, int row, int col) {
133 return putBlob_native(value, row - mStartPos, col);
139 private native boolean putBlob_native(byte[] value, int row, int col);
145 * @param col
148 public boolean putString(String value, int row, int col) {
151 return putString_native(value, row - mStartPos, col);
157 private native boolean putString_native(String value, int row, int col);
163 * @param col
166 public boolean putLong(long value, int row, int col) {
169 return putLong_native(value, row - mStartPos, col);
175 private native boolean putLong_native(long value, int row, int col);
182 * @param col
185 public boolean putDouble(double value, int row, int col) {
188 return putDouble_native(value, row - mStartPos, col);
194 private native boolean putDouble_native(double value, int row, int col);
197 * Set the [row, col] value to NULL
199 * @param col
202 public boolean putNull(int row, int col) {
205 return putNull_native(row - mStartPos, col);
211 private native boolean putNull_native(int row, int col);
218 * @param col the column to read from
221 public boolean isNull(int row, int col) {
224 return isNull_native(row - mStartPos, col);
230 private native boolean isNull_native(int row, int col);
236 * @param col the column to read from
239 public byte[] getBlob(int row, int col) {
242 return getBlob_native(row - mStartPos, col);
248 private native byte[] getBlob_native(int row, int col);
254 * @param col the column to read from
257 public boolean isBlob(int row, int col) {
260 return isBlob_native(row - mStartPos, col);
270 * @param col the column to read from
273 public boolean isLong(int row, int col) {
276 return isInteger_native(row - mStartPos, col);
286 * @param col the column to read from
289 public boolean isFloat(int row, int col) {
292 return isFloat_native(row - mStartPos, col);
302 * @param col the column to read from
305 public boolean isString(int row, int col) {
308 return isString_native(row - mStartPos, col);
314 private native boolean isBlob_native(int row, int col);
315 private native boolean isString_native(int row, int col);
316 private native boolean isInteger_native(int row, int col);
317 private native boolean isFloat_native(int row, int col);
323 * @param col the column to read from
326 public String getString(int row, int col) {
329 return getString_native(row - mStartPos, col);
335 private native String getString_native(int row, int col);
341 * @param col the column to read from
347 public void copyStringToBuffer(int row, int col, CharArrayBuffer buffer) {
357 row - mStartPos, col, buffer.data.length, buffer);
367 int row, int col, int bufferSize, CharArrayBuffer buffer);
374 * @param col the column to read from
377 public long getLong(int row, int col) {
380 return getLong_native(row - mStartPos, col);
386 private native long getLong_native(int row, int col);
393 * @param col the column to read from
396 public double getDouble(int row, int col) {
399 return getDouble_native(row - mStartPos, col);
405 private native double getDouble_native(int row, int col);
412 * @param col the column to read from
415 public short getShort(int row, int col) {
418 return (short) getLong_native(row - mStartPos, col);
428 * @param col the column to read from
431 public int getInt(int row, int col) {
434 return (int) getLong_native(row - mStartPos, col);
445 * @param col the column to read from
448 public float getFloat(int row, int col) {
451 return (float) getDouble_native(row - mStartPos, col);