我使用SQL管理工作室来创建数据库。我现在应该使用哪个连接字符串。 另外数据库没有出现在Server对象资源管理器中为什么? 我曾经在Dot Net工作,但我自己从未处理过数据库创建部分。请帮忙。感谢
我自己的尝试是:
import numpy as np
import matplotlib.pyplot as plt
import datetime
x = [0, 1, 2, 3, 4, 5, 6]
y = [0, 5, 20, 35, 40, 20, 15]
now = datetime.datetime.now()
m = now.month
d = now.day
d1 = str(d) + "-" + str(m)
d2 = d1[:len(d1)-1] + "5"
d3 = d1[:len(d1)-1] + "6"
d4 = d1[:len(d1)-1] + "7"
d5 = d1[:len(d1)-1] + "8"
d6 = d1[:len(d1)-1] + "9"
Day_Month = ["0", d1, d2, d3, d4, d5, d6]
X = np.array(x)
Y = np.array(y)
plt.scatter(X, Y)
plt.plot(y, color='g', linestyle='--', label="--Price")
plt.xlabel("days")
plt.ylabel("Price")
plt.xticks(X, Day_Month)
plt.show()