摘要:
1.Create table in mysql CREATE TABLE `mt` ( `BookIndex` int NOT NULL AUTO_INCREMENT, `BookId` bigint NOT NULL, `BookName` varchar(100) NOT NULL, `Book 阅读全文
摘要:
#include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #include <cppconn/statement.h> #include <cppconn/exception.h> #include 阅读全文
摘要:
1.Install C++ connector sudo apt install libmysqlcppconn-dev 2. #include <iostream> #include <cppconn/driver.h> #include <cppconn/resultset.h> #includ 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
#include <iostream> #include <functional> int callFunction55(int x, int y, function<int(int, int)> func); void invokeCall56(int x, int y); int sum57(i 阅读全文