Charles Gagnon
2cf18dbcf6
Fix MD linting issues ( #667 )
2023-02-07 13:33:31 -08:00
Lucy Zhang
6f45cfa0f3
Update README.md ( #655 )
...
* Update README.md
* Update README.md
2023-01-31 09:01:35 -08:00
Lucy Zhang
1ec003db3c
Add binary types to tests ( #641 )
...
* add binary and varbinary
* add known issue to readme
2023-01-26 07:30:39 -08:00
Lucy Zhang
70dc0b016b
Update README.md ( #627 )
...
* Update README.md
Add note about the current datetime format behavior difference between C# in-process and other languages.
* move to output binding section
* Update README.md
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
2023-01-20 13:23:39 -08:00
Lucy Zhang
0558664daa
Update README.md ( #632 )
2023-01-18 18:01:56 -08:00
Vasu Bhog
13243ca5cb
Add Known Null PowerShell issue for ReadMe ( #625 )
...
* add powershell known issue
* nit comments
2023-01-12 14:52:36 -08:00
Vasu Bhog
7992981d94
Use `[ordered]` in PowerShell identity tests ( #581 )
...
* test ordered on the PS samples
* update case sensitive samples
* add readme known issue
2023-01-10 23:27:54 -08:00
Chris LaFreniere
1afed76b11
Remove build status from README ( #620 )
2023-01-10 10:21:48 -08:00
Lucy Zhang
41169e7fa2
Update README ( #619 )
...
* Update README
Fixes https://github.com/Azure/azure-functions-sql-extension/issues/408 . Documenting that the table cannot contain two columns that only differ by case.
* Update README.md
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
2023-01-09 16:49:38 -08:00
Charles Gagnon
f89da1f961
Update input binding description ( #611 )
2023-01-04 09:25:41 -08:00
Charles Gagnon
1c9572d267
Fully qualify links
2022-12-06 12:36:38 -08:00
Charles Gagnon
8bd917af99
Use aka.ms link to learn docs ( #566 )
...
* Use aka.ms link to learn docs
* Use better link titles
* shorten
* one more
2022-12-06 10:50:38 -08:00
Charles Gagnon
76f0129f6d
Add output binding order note to known issues ( #551 )
2022-12-02 09:57:27 -08:00
Lucy Zhang
c9affd24cc
Fix AddProductColumnTypesTest for Java ( #552 )
...
* enable addproductcolumntypestest for java
* add to known issues
2022-12-01 14:29:41 -08:00
Charles Gagnon
f5a16df564
Cleanup documentation ( #547 )
...
* Cleanup documentation
* more
2022-12-01 09:07:08 -08:00
Charles Gagnon
5f761a46f6
Add section on supported server versions to README ( #493 )
...
* Add section on supported server versions to README
* 2016+
* azure
* feedback
2022-11-16 13:44:28 -08:00
Vasu Bhog
a5fa0cef61
Readme changes followup ( #478 )
...
* readme changes
* Update README.md
2022-11-10 13:54:09 -08:00
Vasu Bhog
8a39788e67
add powershell docs
2022-11-10 01:15:53 -08:00
Charles Gagnon
34ce571736
Move and split README docs ( #471 )
...
* Move and split README docs
* Split by language
* fix links
* More fixes, add back package readme
* fix links
2022-11-09 20:59:15 -08:00
Charles Gagnon
7bcae01139
Merge branch 'main' into chgagnon/triggerbindingsmerge
...
# Conflicts:
# README.md
2022-11-08 15:39:24 -08:00
Lucy Zhang
f06252ef3c
Add java samples ( #458 )
...
* add java samples
* Update samples/samples-java/pom.xml
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
* update readme + add copyright
* update to latest fasterxml
* update to 2.13.4.1
* fix employee.java in readme
Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
2022-11-08 13:42:55 -08:00
Charles Gagnon
8efeacb8db
Merge pull request #429 from Azure/chgagnon/triggerMDS5
...
Merge main -> triggerbindings
2022-11-02 09:17:30 -07:00
AmeyaRele
2e8266fb46
Add trigger scaling configuration ( #428 )
...
* Add trigger scaling config
* Address PR comments
* Fix broken tests
* Add unit tests
* Address review comments
* Update unit tests
* Make variable names consistent
* Add logging
Co-authored-by: Jatin Sanghvi <20547963+JatinSanghvi@users.noreply.github.com>
2022-11-02 13:29:38 +05:30
Charles Gagnon
dd0c7cfff8
Merge branch 'main' into chgagnon/triggerMDS5
...
# Conflicts:
# Directory.Packages.props
# README.md
# performance/packages.lock.json
# samples/samples-csharp/packages.lock.json
# test/Common/TestUtils.cs
# test/GlobalSuppressions.cs
# test/Unit/SqlInputBindingTests.cs
# test/packages.lock.json
2022-11-01 09:49:51 -07:00
Aparajitha M
f753a05281
Fixed property value assignment
...
Javascript object propeties are assigned values with : instead of =.
Changed
```
{ xxxxx = "yyyyyyyy",
.... }
```
to
```
{ xxxxx : "yyyyyyyy" ,
...}
```
Otherwise, function throws error of the form
```
Result: Failure Exception: Worker was unable to load function aaa: 'Invalid shorthand property initializer' Stack: C:\home\site\wwwroot\aaa\index.js:5 xxxxx = "yyyyyyyy", ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Invalid shorthand property initializer at Object.compileFunction (node:vm:352:18) at wrapSafe (node:internal/modules/cjs/loader:1033:15) at Module._compile (node:internal/modules/cjs/loader:1069:27) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1159:10) at Module.load (node:internal/modules/cjs/loader:981:32) at Function.Module._load (node:internal/modules/cjs/loader:822:12) at Module.require (node:internal/modules/cjs/loader:1005:19) at Object.apply (C:\Program Files (x86)\SiteExtensions\Functions\4.13.0\workers\node\dist\src\worker-bundle.js:2:42148) at require (node:internal/modules/cjs/helpers:102:18) at C:\Program Files (x86)\SiteExtensions\Functions\4.13.0\workers\node\dist\src\worker-bundle.js:2:36049
```
2022-10-31 14:12:26 +05:30
Charles Gagnon
f4cd9c4242
Merge branch 'main' into triggerbindings
2022-10-28 10:10:20 -07:00
Lucy Zhang
8e5fbcf105
Serialize datetime objects in utc format for input binding ( #412 )
...
* serialize datetime objects in utc format
* update readme
* space
* add iso format for asyncenumerable + tests
* test different cultures
* fix null check + comment
* log each productcolumntype
2022-10-21 15:50:06 -07:00
Jatin Sanghvi
2fe48ade2f
Add runtime driven scaling support ( #389 )
2022-10-18 22:18:23 +05:30
Charles Gagnon
f2bec01c40
Merge branch 'main' into triggerbindings
2022-10-13 13:55:42 -07:00
Charles Gagnon
a9012b8d21
Update README and code comments ( #391 )
...
* Update README and code comments
* more
* PR comments
* Add cleanup docs
* Fix spelling
* pr comments
2022-10-12 10:21:23 -07:00
Lucy Zhang
1f22e56de7
Allow columns with default values to be excluded from the POCO ( #388 )
...
* allow missing default columns in poco
* add test
* query format
* add default column section to readme
* fix wording
2022-10-10 18:03:18 -07:00
Charles Gagnon
8d827c739c
Add configuration for batch size/polling interval ( #364 )
...
* Add configuration for batch size/polling interval
* PR comments
2022-09-22 10:52:40 -07:00
Charles Gagnon
a71b474597
Merge branch 'main' into chgagnon/mergeFromMain3
...
# Conflicts:
# src/SqlAsyncCollector.cs
# test/GlobalSuppressions.cs
2022-09-20 11:12:26 -07:00
Jatin Sanghvi
8c8d891e92
Escape special characters in Readme file ( #346 )
2022-09-13 20:12:15 +05:30
Charles Gagnon
1581032361
Fix README link ( #342 )
2022-09-09 11:24:38 -07:00
Charles Gagnon
f8a8d6de8f
Fix README
2022-08-30 08:35:22 -07:00
Charles Gagnon
3a159fa36e
Fix trigger tutorial location
2022-08-30 08:29:00 -07:00
Charles Gagnon
863b688a91
Merge branch 'main' into triggerbindings
2022-08-30 08:26:50 -07:00
Charles Gagnon
5acce88258
Fix spelling ( #322 )
2022-08-29 10:06:58 -07:00
Jatin Sanghvi
d5c66df4cd
Rename worker table to leases table ( #319 )
2022-08-26 07:06:39 +05:30
Jatin Sanghvi
5d3931b425
Use constants for worker table column names ( #310 )
2022-08-25 23:29:17 +05:30
Drew Skwiers-Koballa
82dffb8752
readme update for js and python ( #312 )
...
adding JS and Python intro tutorials to readme
2022-08-24 14:27:07 -07:00
Jatin Sanghvi
a11943769b
Renew all leases through single statement ( #297 )
2022-08-20 10:19:54 +05:30
Jatin Sanghvi
824f642a22
Merge branch 'main' into triggerbindings
2022-08-17 16:20:14 +05:30
Jatin Sanghvi
8eeff10c80
Replace non-breaking spaces with regular spaces ( #284 )
2022-07-29 14:56:58 -07:00
Jatin Sanghvi
45ccf94b4c
Address review comments on SqlTableChangeMonitor
2022-07-29 23:23:18 +05:30
Jatin Sanghvi
cac00dc6df
Address review comments on Readme file
2022-07-28 22:02:40 +05:30
Jatin Sanghvi
8b9d5c9150
Add trigger binding support
2022-07-28 00:02:02 +05:30
Jatin Sanghvi
8b9d02016e
Add trigger binding support (Jul 15)
2022-07-27 15:55:32 +05:30
Charles Gagnon
bfaf9a53bf
Add note about output requiring select perms ( #272 )
2022-06-21 14:55:36 -07:00