Skip to content

Commit c6b6685

Browse files
Fixes the build for VS15
1 parent 7c3c477 commit c6b6685

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/SQLCE4Umbraco/SqlCEHelper.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,15 @@ protected override IRecordsReader ExecuteReader(string commandText, SqlCeParamet
229229
return new SqlCeDataReaderHelper(SqlCeApplicationBlock.ExecuteReader(ConnectionString, CommandType.Text,
230230
commandText, parameters));
231231
}
232+
233+
internal IRecordsReader ExecuteReader(string commandText)
234+
{
235+
return ExecuteReader(commandText, new SqlCEParameter(string.Empty, string.Empty));
236+
}
237+
238+
internal int ExecuteNonQuery(string commandText)
239+
{
240+
return ExecuteNonQuery(commandText, new SqlCEParameter(string.Empty, string.Empty));
241+
}
232242
}
233243
}

0 commit comments

Comments
 (0)