Back to project page android-sqlite-server.
The source code is released under:
Apache License
If you think the Android project android-sqlite-server listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.devtcg.sqliteserver.impl.binder.protocol; //from ww w. jav a 2 s . c o m public enum MethodName { /** * Special command executed for each new Binder-based SQLiteServerConnection. This is used * to establish the Binder relationship between both peers so that we can take advantage of * asynchronous death notifications. */ ACQUIRE, BEGIN_TRANSACTION, SET_TRANSACTION_SUCCESSFUL, END_TRANSACTION, RAW_QUERY, EXEC_SQL, INSERT, UPDATE, DELETE, /** * Release the Binder relationship. See {@link #ACQUIRE}. */ RELEASE, }