摘要:
1.cd /etc/mysql/ sudo vim mysql.conf.d 2 3.Move to mysqld.cnf and enter; 4.add the follow clause and add its max_allowed_packet value to 1000M max_all 阅读全文
摘要:
1.Create table in mysql CREATE TABLE `mt` ( `BookIndex` int NOT NULL AUTO_INCREMENT, `BookId` bigint NOT NULL, `BookName` varchar(100) NOT NULL, `Book 阅读全文
摘要:
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 阅读全文
摘要:
#include <iostream> #include <functional> int callFunction55(int x, int y, function<int(int, int)> func); void invokeCall56(int x, int y); int sum57(i 阅读全文
摘要:
#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, 阅读全文
摘要:
//Util.h static unsigned long long factorialLoops; long double Fibonacci35(int len); //Util.cpp unsigned long long Util::factorialLoops=0; long double 阅读全文