postgresql

JimuReport积木报表1.1.05 版本发布,免费的企业级 Web 报表工具

喜你入骨 提交于 2021-01-24 05:51:59
#项目介绍 积木报表,是一款免费的企业级Web报表工具,像搭建积木一样在线设计报表!功能涵盖,数据报表、打印设计、图表报表、大屏设计等! Web 版报表设计器,类似于excel操作风格,通过拖拽完成报表设计。 秉承“简单、易用、专业”的产品理念,极大的降低报表开发难度、缩短开发周期、节省成本、解决各类报表难题。 #当前版本 :v1.1.05 | 2021-01-15 #资料下载 示例代码: https://github.com/zhangdaiscott/JimuReport 马上体验: http://www.jimureport.com/reportDemo 功能清单: www.jimureport.com/plan #快速集成 引入依赖 jar <dependency> <groupId>com.jimureport</groupId> <artifactId>spring-boot-starter-jimureport</artifactId> <version>1.1.05</version> </dependency> 快速集成文档 http://report.jeecg.com/2078875 数据库脚本 jimureport.sql #升级日志 此版本支持复杂分组报表和表达式,提供精美的报表示例,解决了oracle数据库兼容、Excel导出等系列问题。

Docker - psql: django.db.utils.OperationalError: FATAL: role “admin” does not exist

不问归期 提交于 2021-01-24 05:43:13
问题 I've configured docker and postgres for my Django project. When I do python manage.py runserver 0:8000 , it gives me this error: django.db.utils.OperationalError: FATAL: role "admin" does not exist However, I've been used the same configs with my previous projects and everything seems fine in those. Here is my docker-compose.yml file version: '3' services: db: image: postgres environment: - POSTGRES_DB=myproject - POSTGRES_USER=admin - POSTGRES_PASSWORD=admin_pass container_name: myproject

Docker - psql: django.db.utils.OperationalError: FATAL: role “admin” does not exist

▼魔方 西西 提交于 2021-01-24 05:42:20
问题 I've configured docker and postgres for my Django project. When I do python manage.py runserver 0:8000 , it gives me this error: django.db.utils.OperationalError: FATAL: role "admin" does not exist However, I've been used the same configs with my previous projects and everything seems fine in those. Here is my docker-compose.yml file version: '3' services: db: image: postgres environment: - POSTGRES_DB=myproject - POSTGRES_USER=admin - POSTGRES_PASSWORD=admin_pass container_name: myproject

Laravel 5.3 Schema::create ENUM field is VARCHAR

|▌冷眼眸甩不掉的悲伤 提交于 2021-01-23 08:53:46
问题 I just created fresh migration. After running it I see my field type not ENUM type . It has a VARCHAR(255) type instead Schema::create('payments', function (Blueprint $table) { $table->increments('id'); $table->text('response'); $table->enum('type', ['apple', 'paypal']); $table->smallInteger('flags'); $table->timestamps(); }); Can somebody tell me what can be the reason. Am I missing something, I tried multiple times - getting same result. I'm using PostgreSQL 9.5.4 回答1: From the Laravel

Disadvantages of table with too many columns

旧时模样 提交于 2021-01-23 06:06:52
问题 I have some data that I need to put in a PostgreSQL database. These data are related to schools. So there are a LOT of attributes relating to the school, mostly small integers, floats or small texts. And all the data changes yearly. So I'm creating an entity called YearlyData and putting the attributes there. But the thing is, the number of attributes are around 50-60. Now these cannot be normalized because they are plain attributes of the school itself. So I ethically cannot separate them

Multiple INSERTS into one table and many to many table

半世苍凉 提交于 2021-01-22 10:34:06
问题 I'm trying to develop a Q&A website in PHP using a PostgreSQL database. I have an action to create a page which has a title, body, category and tags. I managed to insert all those fields however I'm having some issues inserting multiple tag values. I used this function to get the comma separated values into an array and now I want something that inserts each array element into the database (avoiding repetitions) on table tags and after that insert on my many to many relationship table

RPA 2020.11 all in one 安装

巧了我就是萌 提交于 2021-01-22 07:15:47
计划 1.1 安装组件 Capability Description 版本 RPA Central RPA 任务执行中心 2020.11 RPA Designer RPA Workflow设计器 2020.11 RPA Robot RPA Robot 2020.11 RPA Recorder RPA UI录屏工具(UFT) 2020.11 RPA Self Service RPA 自服务工具 2020.11 1.2 安装环境 本文档内容包含一些格式和说明约定。 组件 Configuration OS 数量 IP RPA Central 4CPU 24G RAM Windows server 2016 1 10.0.0.4 RPA Designer 4CPU 24G RAM Windows server 2016 1 10.0.0.4 RPA Recorder 4CPU 24G RAM Windows server 2016 1 10.0.0.4 RPA Robot 4CPU 24G RAM Windows server 2016 1 10.0.0.4 RPA Self Service 4CPU 24G RAM Windows server 2016 1 10.0.0.4 安装 准备 1.3 安装 Visual C++ 2010 下载并安装Visual C++2010,如下:

Why can't PostgreSQL do this simple FULL JOIN?

你。 提交于 2021-01-22 06:36:34
问题 Here's a minimal setup with 2 tables a and b each with 3 rows: CREATE TABLE a ( id SERIAL PRIMARY KEY, value TEXT ); CREATE INDEX ON a (value); CREATE TABLE b ( id SERIAL PRIMARY KEY, value TEXT ); CREATE INDEX ON b (value); INSERT INTO a (value) VALUES ('x'), ('y'), (NULL); INSERT INTO b (value) VALUES ('y'), ('z'), (NULL); Here is a LEFT JOIN that works fine as expected: SELECT * FROM a LEFT JOIN b ON a.value IS NOT DISTINCT FROM b.value; with output: id | value | id | value ----+-------+--

Deploy Django Application without Service Interruption / no Downtime

隐身守侯 提交于 2021-01-22 05:25:47
问题 We have no continuous integration setup(, yet). But want to deploy very frequently. Once a day or so. We have a pretty standard Django application with a separate Postgres server. We use normal rented VMs (NO Amazon or Rackspace). How can we minimize the downtime of our application? Best would be to zero downtime. We thought about a setup with two equal application and two database servers and deploy one app/db server pair after another. The problem is keeping the data consistant. While one

Deploy Django Application without Service Interruption / no Downtime

房东的猫 提交于 2021-01-22 05:25:27
问题 We have no continuous integration setup(, yet). But want to deploy very frequently. Once a day or so. We have a pretty standard Django application with a separate Postgres server. We use normal rented VMs (NO Amazon or Rackspace). How can we minimize the downtime of our application? Best would be to zero downtime. We thought about a setup with two equal application and two database servers and deploy one app/db server pair after another. The problem is keeping the data consistant. While one