-
Notifications
You must be signed in to change notification settings - Fork 174
Add support for EPA #682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Add support for EPA #682
Conversation
|
@mmcnabb-vms Can you look at this? Will this be merged at all or am I trying in vain? |
|
Yes, surely a good feature to have. There's no rush I think, I saw the PR but the initial state was a bit messy so I waited. |
freddy is the maintainer, I'm just a random contributor :) working on other issues at the moment |
|
@freddy77 Can you help me build freetds for windows? I've never done it before and I could not build it with Visual Studio Code 2022. Maybe there is a documentation how to configure viausl studio code 2022? solved by install perl |
|
Good you fixed the Perl issue. About the error from |
|
If I build with in Visual Studio Code with the folowing CMakeSettings.json Then it finds BIO_get_data I don't understand why it uses x86 compiler, I don't know how to specity else if I specified via |
|
It looks like your environment is compiling for x64 but trying to link to x86. I would try to use Maybe you launched the wrong environment by mistake (if using command line) ? Also Windows should use SSPI so |
|
Thank you. I managed to compile on Windows. I didn't notice the import pyodbc
import os
conn = (
"DRIVER=FreeTDSCustom;"
"SERVER=127.0.0.1;"
"Database=msdb;"
"Port=1433;"
"Trusted_Connection=yes;"
)
print("localhost version: ", pyodbc.connect(conn).execute("SELECT @@VERSION").fetchone()) |
|
If you have any questions about how to test, how to troubleshoot the connection, or how to configure the SQL Server or enable the EPA, I will be happy to help. |
#679
Implement for NTLM:
Implement for Kerberos:
Implement for SSPI
Analyze the changes needed for TDS 8.0