摘要: #!/usr/bin/python3# *_*coding:utf8 *-*# @Time :2022-11-08# @Author :jeck# @Email :# @File :question5.py# 输入三个整数x,y,z,请把这三个数由小到大输出。i1 = int(input('请输入数 阅读全文
posted @ 2022-11-08 09:29 je_ck 阅读(153) 评论(0) 推荐(0)
摘要: # !/usr/bin/python3# *_*coding:utf8 *-*# @Time :2022-11-08# @Author :jeck# @Email :# @File :question4.py# 输入某年某月某日,判断这一天是这一年的第几天year = int(input('输入年: 阅读全文
posted @ 2022-11-08 09:27 je_ck 阅读(110) 评论(0) 推荐(0)
摘要: 1、记录规则: a、不应该返回的位置,需要在标示为记录错误标识。 b、日志记录应为【类.方法】状态:: 错误信息。 说明:状态主要记录错误。不是错误的,可以不记录。 [CollectData]:: Process Engine data end #含义:在收集数据环节,数据执行完成了。 [Colle 阅读全文
posted @ 2022-10-14 17:34 je_ck 阅读(21) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Security.Cryptography;us 阅读全文
posted @ 2022-10-12 11:20 je_ck 阅读(56) 评论(0) 推荐(0)
摘要: int count = 0;int count1 = 0;for (int i = 0; i < 10; i++){ count1 = count++;}MessageBox.Show(count.ToString(),count1.ToString()); 规则:先赋值,后++ count的值是1 阅读全文
posted @ 2022-10-09 11:27 je_ck 阅读(24) 评论(0) 推荐(0)
摘要: MessageBox.Show((1.12).ToString("f1")); 小数点后1位。 阅读全文
posted @ 2022-10-09 11:24 je_ck 阅读(42) 评论(0) 推荐(0)
摘要: 安装MySQL之后,系统就会出现一个mysql账号。所有MySQL的行为都需要这个mysql账号来执行。 1、默认情况下,mysql账号不能登录。只能启动mysql 2、如果需要mysql读写文件时,需要该文件对MySQL具有相应的权限。否则无法访问。 例如:输出generallog等日志。 阅读全文
posted @ 2022-09-27 16:45 je_ck 阅读(25) 评论(0) 推荐(0)
摘要: SELECT a.attnum,a.attname AS field,t.typname AS type,a.attlen AS length,a.atttypmod AS lengthvar,a.attnotnull AS notnull,b.description AS commentFROM 阅读全文
posted @ 2022-09-16 16:01 je_ck 阅读(842) 评论(0) 推荐(0)
摘要: 当前数据库大小 select pg_size_pretty(pg_database_size('库名')) eg:select pg_size_pretty(pg_database_size('yyds')) 查询数据库文件存放路径:show data_directory; 阅读全文
posted @ 2022-09-07 20:18 je_ck 阅读(172) 评论(0) 推荐(0)
摘要: 人大金仓使用变量 -- 定义变量 DECLARE v_ID varchar2;BEGIN v_PRINTER_ID := 'abc'; -- 普通赋值方式 select hostid into v_ID from c_info where h_id = 1030; -- sql语句赋值方式。 END 阅读全文
posted @ 2022-09-07 20:16 je_ck 阅读(1926) 评论(0) 推荐(0)