move to folder in relation to like sections right

This commit is contained in:
Bartal Læarsson
2026-02-16 15:13:14 +00:00
parent e36a1c79af
commit 76f77a6a14
11 changed files with 0 additions and 0 deletions
@@ -0,0 +1,22 @@
import pyodbc
try:
connection = pyodbc.connect('DRIVER={ODBC Driver 17 for SQL Server};SERVER=.;DATABASE=SampleDB;Trusted_Connection=yes')
cursor = connection.cursor()
print()
print("Successfully connected to SQL Server")
print()
cursor.close()
connection.close()
except pyodbc.Error as ex:
print()
print("exception: ", ex)
print("closing program")
print()
exit()
print()