This commit is contained in:
ashishandroid
2017-01-19 12:42:16 +05:30
parent c9f43af6d3
commit 2898ac6382
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@
<ConfirmationsSetting value="0" id="Add" /> <ConfirmationsSetting value="0" id="Add" />
<ConfirmationsSetting value="0" id="Remove" /> <ConfirmationsSetting value="0" id="Remove" />
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">
@@ -141,6 +141,12 @@ public class GSKOrangeDB extends SQLiteOpenHelper {
public void deleteAllTables() { public void deleteAllTables() {
db.delete(CommonString.TABLE_COVERAGE_DATA, null, null);
db.delete(CommonString.CREATE_TABLE_STOCK_DIALOG_MAIN, null, null);
db.delete(CommonString.CREATE_TABLE_INSERT_STOCK_ADDITIONAL_VISIBILITY_MAIN, null, null);
db.delete(CommonString.CREATE_TABLE_STOCK_DIALOG, null, null);
db.delete(CommonString.CREATE_TABLE_STOCK_ADDITIONAL_STOCK_DATA, null, null);
} }
public void InsertJCP(JourneyPlanGetterSetter data) { public void InsertJCP(JourneyPlanGetterSetter data) {
@@ -907,7 +907,7 @@ public class GeoTagActivity extends AppCompatActivity implements OnMapReadyCallb
db.updateDataStatus(geotaglistImage.get(i).getStoreid(), Statustag); db.updateDataStatus(geotaglistImage.get(i).getStoreid(), Statustag);
//db.deleteGeoTagData(geotaglistImage.get(i).getStoreid()); db.deleteGeoTagData(geotaglistImage.get(i).getStoreid());
} }