Back to project page msf-spaces-sdk-android.
The source code is released under:
Apache License
If you think the Android project msf-spaces-sdk-android 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 de.imc.mirror.sdk.android.data; // w w w . j a v a 2 s . co m /** * This class provides a set of strings for creation, deletion and all columnnames of the database table * where all channels information will be saved. * @author Mach */ public class ChannelsTable { public static final String TABLE_NAME = "channels_table"; public static final String SPACE = "space"; public static final String TYPE = "type"; public static final String KEY = "key"; public static final String VALUE = "value"; public static final String SQL_CREATE = "CREATE TABLE " + TABLE_NAME + " (" + SPACE + " STRING NOT NULL," + TYPE + " STRING NOT NULL," + KEY + " STRING NOT NULL," + VALUE + " STRING NOT NULL);"; public static final String SQL_DROP = "DROP TABLE IF EXISTS " + TABLE_NAME + ";"; }