上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 76 下一页
摘要: int main(int args, char **argv) { system("notify-send 'title' 'message'"); system("notify-send 'title:update failed' 'message:update clause failed'"); 阅读全文
posted @ 2023-12-11 17:33 FredGrit 阅读(4) 评论(0) 推荐(0) 编辑
摘要: mysql> select @@version; + + | @@version | + + | 8.0.35-0ubuntu0.23.04.1 | + + 1 row in set (0.00 sec) mysql> create table t4(id bigint unsigned auto_ 阅读全文
posted @ 2023-12-10 00:00 FredGrit 阅读(12) 评论(0) 推荐(0) 编辑
摘要: mysql> show create table t3; + + + | Table | Create Table | + + + | t3 | CREATE TABLE `t3` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `create_tim 阅读全文
posted @ 2023-12-09 22:59 FredGrit 阅读(70) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE `t1` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT primary key, `author` varchar(40) NOT NULL DEFAULT '', `comment` varchar(40) NOT NULL 阅读全文
posted @ 2023-11-21 22:48 FredGrit 阅读(19) 评论(0) 推荐(0) 编辑
摘要: sudo apt update;sudo apt upgrade -y; sudo apt-get install open-vm-tools-desktop;sudo apt-get install open-vm-tools; wget https://dl.google.com/linux/d 阅读全文
posted @ 2023-11-21 09:18 FredGrit 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Install vscode 阅读全文
posted @ 2023-11-17 23:24 FredGrit 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <stdexcept> #include <chrono> #include <csetjmp> #include <ctime> #include <fstream> #include <iostream> #include <iomanip> #include <signal. 阅读全文
posted @ 2023-11-15 22:46 FredGrit 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1.install psql sudo apt install postgresql postgresql-contrib; sudo apt-get install postgresql-client; 2.login as the default user postgres sudo -u po 阅读全文
posted @ 2023-11-12 20:17 FredGrit 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.Install libpq-dev sudo apt install libpq-dev locate libpq-fe.h /usr/include/postgresql/libpq-fe.h 2.create table t1 create table t1(id bigserial not 阅读全文
posted @ 2023-11-10 23:24 FredGrit 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.Install libpq-dev sudo apt install libpq-dev locate libpq-fe.h /usr/include/postgresql/libpq-fe.h 2.main.cpp #include <chrono> #include <fstream> #i 阅读全文
posted @ 2023-11-09 22:06 FredGrit 阅读(65) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 76 下一页