C#中连接SQL Server的代码:
创新互联主营定西网站建设的网络公司,主营网站建设方案,重庆APP开发,定西h5小程序开发搭建,定西网站营销推广欢迎定西等地区企业咨询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();下面是C#链接SQLite的代码:
//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();另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。