上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 123 下一页
摘要: 1.Create table in mysql CREATE TABLE `mt` ( `BookIndex` int NOT NULL AUTO_INCREMENT, `BookId` bigint NOT NULL, `BookName` varchar(100) NOT NULL, `Book 阅读全文
posted @ 2022-05-14 23:48 FredGrit 阅读(76) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #include <cppconn/statement.h> #include <cppconn/exception.h> #include 阅读全文
posted @ 2022-05-14 22:46 FredGrit 阅读(95) 评论(0) 推荐(0)
摘要: 1.Install C++ connector sudo apt install libmysqlcppconn-dev 2. #include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #includ 阅读全文
posted @ 2022-05-14 02:19 FredGrit 阅读(95) 评论(0) 推荐(0)
摘要: 1.Check status sudo systemctl mysql status; 2.If not started mysql service sudo service mysql start; sudo service mysql status; 3.Then log in mysql vi 阅读全文
posted @ 2022-05-14 02:13 FredGrit 阅读(35) 评论(0) 推荐(0)
摘要: 1, sudo apt update 2. sudo apt upgrade 3. sudo apt install mysql-server 4.Check version mysql --version 5. sudo mysql_secure_installation And failed,i 阅读全文
posted @ 2022-05-14 01:37 FredGrit 阅读(166) 评论(0) 推荐(0)
摘要: #include <iostream> #include <functional> int callFunction55(int x, int y, function<int(int, int)> func); void invokeCall56(int x, int y); int sum57(i 阅读全文
posted @ 2022-05-14 00:01 FredGrit 阅读(34) 评论(0) 推荐(0)
摘要: #include <iostream> #include <functional> using namespace std; int sum41(int x,int y); int multiply42(int x,int y); int passFuncAddress43(int x,int y, 阅读全文
posted @ 2022-05-13 19:50 FredGrit 阅读(30) 评论(0) 推荐(0)
摘要: //Util.h #ifndef Util_H #define Util_H #include <chrono> #include <ctime> #include <fstream> #include <functional> #include <iostream> #include <threa 阅读全文
posted @ 2022-04-24 22:35 FredGrit 阅读(42) 评论(0) 推荐(0)
摘要: //Util.h static unsigned long long factorialLoops; long double Fibonacci35(int len); //Util.cpp unsigned long long Util::factorialLoops=0; long double 阅读全文
posted @ 2022-04-19 23:46 FredGrit 阅读(26) 评论(0) 推荐(0)
摘要: #include <iostream> #include <limits.h> void Util::showMax(){ cout<<fixed<<"INT32_MAX="<<INT32_MAX<<endl; cout<<fixed<<"UINT32_MAX="<<UINT32_MAX<<endl 阅读全文
posted @ 2022-04-19 22:39 FredGrit 阅读(64) 评论(0) 推荐(0)
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 123 下一页