连接到sql-server数据库

时间:2018-04-23 09:42:40

标签: c# sql-server

我使用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()

1 个答案:

答案 0 :(得分:1)

您应该将数据库放在initial cataglog中并将sql server名称放在Data Source

制作一个扩展名为.UDL的文件并双击它,设置如下图所示的属性。

如果您无法在顶部组合框中选择您的sql server,则sql server browser服务未在安装了sql server的计算机上运行,​​或者存在防火墙问题。

不需要运行sql server浏览器来使其正常工作,如果你不知道它的名字,它只会帮助选择服务器。

enter image description here