File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
src/main/java/com/simplesql/simplesql/config Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 applicationId " br.com.sql"
88 minSdkVersion 15
99 targetSdkVersion 29
10- versionCode 18
11- versionName " 1.0.17 "
10+ versionCode 19
11+ versionName " 1.0.18 "
1212 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1313 }
1414 buildTypes {
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 defaultConfig {
88 minSdkVersion 11
99 targetSdkVersion 29
10- versionCode 18
11- versionName " 1.0.17 "
10+ versionCode 19
11+ versionName " 1.0.18 "
1212
1313 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1414 consumerProguardFiles ' consumer-rules.pro'
Original file line number Diff line number Diff line change @@ -252,6 +252,8 @@ public Select like() {
252252 public List execute () {
253253 SQLiteDatabase read = helperBD .getReadableDatabase ();
254254 if (functionParameter ) {
255+ if (columnFunction .equals ("" ) || columnFunction == null )
256+ columnFunction = "*" ;
255257 SQLString .replace (KEY_FUNCTION_PARAMETER , columnFunction );
256258 }
257259 SQLString = SQLString + ";" ;
You can’t perform that action at this time.
0 commit comments