[Tutor] Connecting to MS SQL Server
Hello, Can anybody please suggest better way to connect MS SQL Server database? Thanks! ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
Re: [Tutor] Connecting to MS SQL Server
On 03/20/2018 07:55 AM, Mitesh H. Budhabhatti wrote: > Hello, > > Can anybody please suggest better way to connect MS SQL Server database? > > Thanks! Better than what? The standard mechanisms work fine (mysql documentation has a decent writeup) ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
Re: [Tutor] Connecting to MS SQL Server
On 03/20/2018 08:00 AM, Mats Wichmann wrote: > On 03/20/2018 07:55 AM, Mitesh H. Budhabhatti wrote: >> Hello, >> >> Can anybody please suggest better way to connect MS SQL Server database? >> >> Thanks! > > > Better than what? > > The standard mechanisms work fine (mysql documentation has a decent writeup) Sorry, I misread your question, somehow my eyes saw mysql instead of mssql. Will leave that to others to answer, don't use SQL Server. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
Re: [Tutor] Connecting to MS SQL Server
On 20/03/18 13:55, Mitesh H. Budhabhatti wrote: > Hello, > > Can anybody please suggest better way to connect MS SQL Server database? As Mats said, better than what? There are at least two "official" ways: 1) using the SQL Server driver 2) Using the ODBC driver. Both are described here: https://docs.microsoft.com/en-us/sql/connect/python/python-driver-for-sql-server If you are doing anything else then try these. If they don't work get back to us with more specific details. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor