上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 94 下一页
摘要: SET GLOBAL connect_timeout = 6000;SHOW VARIABLES LIKE "%timeout"; 阅读全文
posted @ 2022-12-04 20:15 FredGrit 阅读(62) 评论(0) 推荐(0) 编辑
摘要: Find and delete files greater than a given size from the Linux command line sudo -u root sh -c 'cd ./snapd/cache/ && find . -size +100M -exec rm -rf { 阅读全文
posted @ 2022-12-04 19:41 FredGrit 阅读(117) 评论(0) 推荐(0) 编辑
摘要: //Util.h #pragma once #include <chrono> #include <ctime> #include <dirent.h> #include <fstream> #include <iostream> #include <thread> #include <unistd 阅读全文
posted @ 2022-12-04 18:12 FredGrit 阅读(35) 评论(0) 推荐(0) 编辑
摘要: You can also log into MySQL console and run the following command to set max_allowed_packet size for the duration of the session. set global net_buffe 阅读全文
posted @ 2022-12-04 16:45 FredGrit 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1.Install libmysqlcppconn-dev sudo apt-get install libmysqlcppconn-dev 2. //MySQLHelper.h #include <iostream> #include <mysql_connection.h> #include < 阅读全文
posted @ 2022-12-03 22:13 FredGrit 阅读(35) 评论(0) 推荐(0) 编辑
摘要: //Model/Book.cpp #include <iostream> #include <jsoncpp/json/json.h> using namespace std; class Book { public: int Idx; double Id; char *Abstract; char 阅读全文
posted @ 2022-12-03 19:32 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //MathHelper.h #ifndef _MathHelper_H #define _MathHelper_H #include <iostream> #include <random> #include <stdio.h> using namespace std; template <cla 阅读全文
posted @ 2022-12-03 19:24 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include <chrono> #include <ctime> #include <dirent.h> #include <fstream> #include <iostream> #include <thread> #include <unistd.h> #include <uuid/uui 阅读全文
posted @ 2022-12-03 19:19 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //Book.h #include <iostream> #include <jsoncpp/json/json.h> using namespace std; class Book { public: int Idx; unsigned long long Id; char *Name; char 阅读全文
posted @ 2022-12-02 11:45 FredGrit 阅读(17) 评论(0) 推荐(0) 编辑
摘要: //Book.cpp #include <iostream> using namespace std; class Book { public: int Idx; char *ISBN; char *Name; char *Abstract; char *Content; char *Topic; 阅读全文
posted @ 2022-11-28 15:02 FredGrit 阅读(23) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 94 下一页