android.database.sqlite
Class SQLiteProgram

java.lang.Object
  extended by android.database.sqlite.SQLiteClosable
      extended by android.database.sqlite.SQLiteProgram
All Implemented Interfaces:
Closeable
Direct Known Subclasses:
SQLiteQuery, SQLiteStatement

public abstract class SQLiteProgram
extends SQLiteClosable


Method Summary
 void bindAllArgsAsStrings(String[] bindArgs)
           
 void bindBlob(int index, byte[] value)
           
 void bindDouble(int index, double value)
           
 void bindLong(int index, long value)
           
 void bindNull(int index)
           
 void bindString(int index, String value)
           
 void clearBindings()
           
 int getUniqueId()
          Deprecated. 
protected  void onAllReferencesReleased()
           
 
Methods inherited from class android.database.sqlite.SQLiteClosable
acquireReference, close, onAllReferencesReleasedFromContainer, releaseReference, releaseReferenceFromContainer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getUniqueId

@Deprecated
public final int getUniqueId()
Deprecated. 


bindNull

public void bindNull(int index)

bindLong

public void bindLong(int index,
                     long value)

bindDouble

public void bindDouble(int index,
                       double value)

bindString

public void bindString(int index,
                       String value)

bindBlob

public void bindBlob(int index,
                     byte[] value)

clearBindings

public void clearBindings()

bindAllArgsAsStrings

public void bindAllArgsAsStrings(String[] bindArgs)

onAllReferencesReleased

protected void onAllReferencesReleased()
Specified by:
onAllReferencesReleased in class SQLiteClosable


Copyright © 2008-2012. All Rights Reserved.