반응형

전체 글 2757

Missing “/extras/google/google_play_services/libproject” folder after update to revision 30

Missing “/extras/google/google_play_services/libproject” folder after update to revision 30 I updated the Google Play Services version from the revision 29 to 30 using the Android SDK Manager, but after updating the directory "/extras/google/google_play_services/libproject" disappeared, leaving only the directories "docs" and " samples". I've tried uninstall and reinstall several times but alway..

Development Tip 2020.10.21

Escape a string in SQL Server so that it is safe to use in LIKE expression

Escape a string in SQL Server so that it is safe to use in LIKE expression How do I escape a string in SQL Server's stored procedure so that it is safe to use in LIKE expression. Suppose I have an NVARCHAR variable like so: declare @myString NVARCHAR(100); And I want to use it in a LIKE expression: ... WHERE ... LIKE '%' + @myString + '%'; How do I escape the string (more specifically, character..

Development Tip 2020.10.21
반응형