随笔分类 -  数据库

摘要:基本含义NoSQL(NoSQL = Not Only SQL ),意即"不仅仅是SQL"。在现代的计算系统上每天网络上都会产生庞大的数据量。这些数据有很大一部分是由关系数据库管理系统(RDMBS)来处理。1970年 E.F.Codd's提出的关系模型的论文 "A relational model o 阅读全文
posted @ 2018-01-24 16:03 叶建成 阅读(1667) 评论(0) 推荐(0)
摘要:// SQLConnect_ref.cpp // compile with: odbc32.lib #include #include int main() { SQLHENV henv; SQLHDBC hdbc; SQLHSTMT hstmt; SQLRETURN retcode; SQLCHAR * OutConnStr = (SQLCHAR... 阅读全文
posted @ 2016-05-26 16:41 叶建成 阅读(349) 评论(0) 推荐(0)
摘要:#include #include #include #include #include #include #include using namespace std; #define SNO_LEN 30 #define NAME_LEN 50 #define DEPART_LEN 100 #define SSEX_LEN 5 int main() { SQLHENV ... 阅读全文
posted @ 2016-05-26 16:37 叶建成 阅读(334) 评论(0) 推荐(0)