
数据库
彬民
这个作者很懒,什么都没留下…
展开
-
linux c 数据库操作
1.Mysql #include <stdio.h> #include <stdlib.h> #include <string.h> #include <mysql/mysql.h> int main(void) { MYSQL *g_conn; // mysql 连接 const char *g_host_name = "10.111.14.10"; const char *g_user_name = "s...原创 2020-06-03 11:30:24 · 363 阅读 · 0 评论 -
sqlserver存储过程
转载自https://www.cnblogs.com/hu-bo/p/6198034.html --1.不带返回值 默认值的存储过程的编写 use EASTEONE --判断存储过程名字是否存在 存在删除 注意 在执行完语句的时候要用go结束 if exists (select name from sysobjects where name = 'up_getall...转载 2019-02-14 09:54:45 · 1123 阅读 · 0 评论