質問編集履歴
1
別のエラーが出たので質問内容をかえさせていただきます
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,6 +19,16 @@
|
|
19
19
|
実行すると3分ほど動かずその後下記のエラーが出てきます、これはデータベースを見つけられてないのでしょうか?
|
20
20
|
|
21
21
|
質問に慣れていなくて抜けている所があったらすみません。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
追記(2/7)
|
26
|
+
|
27
|
+
can110様のアドバイスによりインスタンスを追加したところPython側で実行したときの待機時間は無くなったのですがすぐ別のエラーが出るようになってしまいましたエラー内容を見ても原因がわからず再度追記という形で質問させていただきます。
|
28
|
+
|
29
|
+
コードで抜けている所があったりSQL server側で設定などで必要なものなどがあれば教えてほしいです。
|
30
|
+
|
31
|
+
たびたびすみません
|
22
32
|
|
23
33
|
|
24
34
|
|
@@ -58,6 +68,44 @@
|
|
58
68
|
|
59
69
|
```
|
60
70
|
|
71
|
+
```
|
72
|
+
|
73
|
+
追記(2/7)
|
74
|
+
|
75
|
+
test.py:3: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
|
76
|
+
|
77
|
+
import pymssql
|
78
|
+
|
79
|
+
Traceback (most recent call last):
|
80
|
+
|
81
|
+
File "src\pymssql.pyx", line 636, in pymssql.connect
|
82
|
+
|
83
|
+
File "src\_mssql.pyx", line 1957, in _mssql.connect
|
84
|
+
|
85
|
+
File "src\_mssql.pyx", line 676, in _mssql.MSSQLConnection.__init__
|
86
|
+
|
87
|
+
File "src\_mssql.pyx", line 1683, in _mssql.maybe_raise_MSSQLDatabaseException
|
88
|
+
|
89
|
+
_mssql.MSSQLDatabaseException: (20009, b'DB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Server is unavailable or does not exist (localhost\MSSQLSERVER)\nDB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Server is unavailable or does not exist (localhost\MSSQLSERVER)\n')
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
During handling of the above exception, another exception occurred:
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
Traceback (most recent call last):
|
98
|
+
|
99
|
+
File "test.py", line 4, in <module>
|
100
|
+
|
101
|
+
cnxn = pymssql.connect('.\MSSQLSERVER', '***', '***', 'sanple_0206')
|
102
|
+
|
103
|
+
File "src\pymssql.pyx", line 642, in pymssql.connect
|
104
|
+
|
105
|
+
pymssql.OperationalError: (20009, b'DB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Server is unavailable or does not exist (localhost\MSSQLSERVER)\nDB-Lib error message 20009, severity 9:\nUnable to connect: Adaptive Server is unavailable or does not exist (localhost\MSSQLSERVER)\n')
|
106
|
+
|
107
|
+
```
|
108
|
+
|
61
109
|
|
62
110
|
|
63
111
|
### 該当のソースコード
|
@@ -88,6 +136,36 @@
|
|
88
136
|
|
89
137
|
|
90
138
|
|
139
|
+
```
|
140
|
+
|
141
|
+
追記(2/7)
|
142
|
+
|
143
|
+
# pymssql=2.1.4
|
144
|
+
|
145
|
+
# SQL Server=2017(14.0.1000.169)
|
146
|
+
|
147
|
+
# Python=3.7.4
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
import pymssql
|
152
|
+
|
153
|
+
conn = pymssql.connect(server='DESKTOP-93EGBUF\MSSQLSERVER', user='***', password='***', database='sanple_0206')
|
154
|
+
|
155
|
+
cursor = conn.cursor()
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
cursor.execute('INSERT INTO test0206 VALUES(40,41,42)')
|
160
|
+
|
161
|
+
row = cursor.fetchone()
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
conn.close()
|
166
|
+
|
167
|
+
```
|
168
|
+
|
91
169
|
### 試したこと
|
92
170
|
|
93
171
|
|