C#中连接SQL Server的代码:
string con, sql;
con = "Server=.;Database=温湿度测试;Trusted_Connection=SSPI";
sql = "select * from 温湿度测试";
SqlConnection mycon = new SqlConnection(con);
DateTime uploadDate = System.DateTime.Now;
mycon.Open();
SqlDataAdapter myda = new SqlDataAdapter(sql, con);
DataSet myds = new DataSet();
myda.Fill(myds, "温湿度测试");
String sql2 = "insert into 温湿度测试(日期,时间,温度,湿度) values('" + uploadDate + "','" + uploadDate + "','" + wendu + "','" + shidu + "')";
SqlDataAdapter myda2 = new SqlDataAdapter(sql2, mycon);
myda2.Fill(myds, "温湿度测试");
dataGridView1.DataSource = myds.Tables["温湿度测试"];
mycon.Close();
//sqlite 数据库
string uploadDate = System.DateTime.Now.ToShortDateString().ToString();
string uploadTime = System.DateTime.Now.ToLongTimeString().ToString();
SQLiteConnection conn = null;
string dbPath = "Data Source =" + "C:/sqlite" + "/数据测试.db";
conn = new SQLiteConnection(dbPath);//创建数据库实例,指定文件位置
conn.Open();//打开数据库,若文件不存在会自动创建
string sql = "CREATE TABLE IF NOT EXISTS '" + "温度" + uploadDate + "' (日期 varchar(6), 时间 varchar(6), 温度 varchar(6));";//建表语句
SQLiteCommand cmdCreateTable = new SQLiteCommand(sql, conn);
cmdCreateTable.ExecuteNonQuery();//如果表不存在,创建数据表
SQLiteCommand cmdInsert = new SQLiteCommand(conn);
cmdInsert.CommandText = "INSERT INTO '" + "温度" + uploadDate + "' VALUES('" + uploadDate + "','" + uploadTime + "','" + wendu + "')";//插入几条数据
cmdInsert.ExecuteNonQuery();
conn.Close();
亿速云「云数据库 MySQL」免部署即开即用,比自行安装部署数据库高出1倍以上的性能,双节点冗余防止单节点故障,数据自动定期备份随时恢复。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。