Hadis Kakanejadi
Hadis Kakanejadi
@heroboy varchar stores 1 byte (ascii) characters, there's an equivalent function in nvarchar datatype object to handle the Unicode characters https://github.com/tediousjs/tedious/blob/85d96fee8fd3c39b08513c64deff40f4141d9e62/src/data-types/nvarchar.js#L55-L62 If you have faced an issue would you please...
as it is mentioned in [MSDN](https://docs.microsoft.com/en-us/sql/t-sql/data-types/char-and-varchar-transact-sql) varchar/char is[ non-Unicode](https://www.asciitable.com/) string data, and [nvarchar/nchar](https://docs.microsoft.com/en-us/sql/t-sql/data-types/nchar-and-nvarchar-transact-sql) is unicode string data. so when you have a _Unicode string_ data you should use _nvarchar_. Also...
@gladmustang I am not able to help with this info 🤷♀️ but the error is telling what could be the potential issue. are you able to connect to the server...
@arthurschreiber could you merge this PR? would be good to have template for issues
@kevinkuszyk integrated authentication support #624 is implemented but has not been merged into master yet, stay tuned 😃
@meet-bhagdev +1 to @v-suhame's idea. As she said Tedious doesn't support AzureAD yet and is in our future plans to support it. In PHP, we are testing the Azure AD...
@arthurschreiber I have finished AAD (fedauth) authentication usign username password based on current master, and able to connect. I was wondering when would you merge this PR, so I can...