Skip to content

Commit 8d78ef1

Browse files
committed
Merge branch 'main' of https://github.com/windrush123/O2EZ-BOT into main
2 parents 69a71a0 + 40913df commit 8d78ef1

6 files changed

Lines changed: 15 additions & 83 deletions

File tree

Logs/bot.log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
WARNING:discord.client:PyNaCl is not installed, voice will NOT be supported

Logs/botlog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
WARNING:discord.client:PyNaCl is not installed, voice will NOT be supported
2+
WARNING:discord.client:PyNaCl is not installed, voice will NOT be supported
3+
WARNING:discord.client:PyNaCl is not installed, voice will NOT be supported

README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

bot.py

Lines changed: 0 additions & 56 deletions
This file was deleted.

mssql.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import pyodbc
2+
conn = pyodbc.connect('Driver={SQL Server};'
3+
'Server=127.0.0.1;'
4+
'Database=O2JAM;'
5+
'uid=sa;pwd=123;')
6+
7+
cursor = conn.cursor()
8+
cursor.execute('SELECT id,userid,usernick FROM dbo.member')
9+
10+
for row in cursor:
11+
print(row)

requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)