63609732a8236da58b2551cab591b714af2c72f9
API/CodeSamples/1-Million-Record-View.md
| ... | ... | @@ -8,7 +8,7 @@ Below is the SQL sample to create a View with 1 million records using the Northw |
| 8 | 8 | ## What To Change |
| 9 | 9 | |
| 10 | 10 | |
| 11 | -'''c# |
|
| 11 | +'''python |
|
| 12 | 12 | DECIMAL(18,6) to NUMERIC(22,8): |
| 13 | 13 | List<KeyValuePair<string, string>> typeOverrides = AdHocContext.Driver.NativeTypesOverrides; |
| 14 | 14 | for (int i = 0; i < typeOverrides.Count; i++) |
| ... | ... | @@ -18,6 +18,7 @@ for (int i = 0; i < typeOverrides.Count; i++) |
| 18 | 18 | break; |
| 19 | 19 | } |
| 20 | 20 | AdHocContext.Driver.NativeTypesOverrides = typeOverrides; |
| 21 | + |
|
| 21 | 22 | ''' |
| 22 | 23 | |
| 23 | 24 | ##SQL Server |