File tree 1 file changed +4
-4
lines changed
docs2/pages/getting-started
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Make the impossible now possible. Evaluate C# expression in SQL to overcome limi
57
57
- Consume Web Service
58
58
- Replace text in template with String Interpolation
59
59
60
- {% include template-example.html title=' Dynamic Expression Example' %}
60
+ ### Dynamic Expression Example
61
61
``` csharp
62
62
-- CREATE test
63
63
DECLARE @table TABLE ( X INT , Y INT , Z INT )
@@ -82,7 +82,7 @@ Improve performance and capability for splitting text with an easy to use split
82
82
- Include row index
83
83
84
84
85
- { % include template - example . html title = ' Split Text Example' % }
85
+ ### Split Text Example
86
86
```csharp
87
87
-- CREATE test
88
88
DECLARE @t TABLE (Id INT , Input VARCHAR (MAX ))
@@ -109,7 +109,7 @@ Use Regex flexibility to overcome "LIKE" and "PATHINDEX" limitations.
109
109
- Replace
110
110
- Split
111
111
112
- { % include template - example . html title = ' Regular Expression Example' % }
112
+ ### Regular Expression Example
113
113
```csharp
114
114
DECLARE @customer TABLE ( Email VARCHAR (255 ) )
115
115
@@ -135,7 +135,7 @@ Avoid enabling xp_cmdshell and compromising your SQL Server and use instead a mo
135
135
- Improve readability
136
136
- Improve security
137
137
138
- { % include template - example . html title = ' Example' % }
138
+ ### Example
139
139
```csharp
140
140
-- REQUIRE EXTERNAL_ACCESS permission
141
141
DECLARE @sqlnet SQLNET = SQLNET :: New ('
You can’t perform that action at this time.
0 commit comments