[python data analysis practice] visualization of box office data analysis data

Catalog Figure 1 trend of monthly ticket house every year Figure 2 total box office value, total number of films released and number of audience Figure 3 total box office and daily average box office Figure 4 Relationship between single ticket office and release month In the previous section ...

Posted by dsnhouse on Sat, 26 Oct 2019 20:43:49 -0700

Introduction to SQL server manual injection

Catalog 0x01 SQL server Foundation 0x02 basic injection Some versions of SQL server have been installed by hackers. Please check the details at the end of this article. 0x01 SQL server Foundation Before learning to inject, the most important thing is to understand the specific things of SQL server, so as to better inject operations. System libr ...

Posted by mikem562 on Sat, 26 Oct 2019 13:26:43 -0700

sqlite3 open, sqlite3 exec, slite3 close

sqlite3_open SQLite3 open function prototype: int sqlite3_open( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb /* OUT: SQLite db handle */ ); SQLite3 open is used to connect and open a database. If the database does not exist, a database file will be created and opened under the specified ...

Posted by webmazter on Sat, 26 Oct 2019 10:57:27 -0700

ORACLE Direct NFS installation

DNFS is a new feature introduced by Oracle 11g to improve the IO performance of the system with NFS. Compared with system level NFS, DNFS reduces the consumption of network and IO transmission. The reasons for the low IO capacity of normal NFS are:1. Low efficiency data transmission, multi link implementation is difficult;2. The system's RPC s ...

Posted by sambkk on Sat, 26 Oct 2019 09:51:21 -0700

A simple understanding of java 8 Stream

Stream allows us to process data declaratively. brief introduction In Java, collection and array are two common data structures Similar to the form of SQL statements querying data from a database, Stream provides a high level of abstraction for Java collection operations and representations. The set of elements to be processed is treated as a ...

Posted by Vidya_tr on Sat, 26 Oct 2019 07:48:19 -0700

MySql database learning

Content review of MySql database learning (1) -Database creation: Name of create database character set character set collate collation --Database deletion: drop database database name -- Amendment: alter database character set character set (utf8) - enquiry: show database ...

Posted by richiec on Sat, 26 Oct 2019 04:19:55 -0700

MySql database learning

MySql database learning (1) mySQL (relational database management system) MySQL is a relational database management system, developed by MySQL AB company in Sweden, which is currently a product of Oracle. MySQL is one of the most popular relational database management systems. In WEB application, MySQ ...

Posted by fresch on Fri, 25 Oct 2019 21:22:24 -0700

Basic steps and code of Mybatis framework

Basic steps and code of Mybatis framework 1.ji create the required database 2. Configure the global configuration file mybatis ﹤ config.xml (other file names are preferred) <?xml version="1.0" encoding="UTF-8"?> ...

Posted by petrosa on Thu, 24 Oct 2019 07:01:50 -0700

Analysis of SQL Server Trigger and its application

I. what is trigger trigger is a method provided by SQL server to programmers and data analysts to ensure data integrity. It is a special stored procedure related to table events. Its execution is not called by programs or started manually, but triggered by events. (--- from Baidu Encyclopedia) Simp ...

Posted by 99degrees on Thu, 24 Oct 2019 03:53:16 -0700

A new micro ORM open source framework

Weed3 a micro ORM framework (only 0.1Mb) Source: https://github.com/noear/weed3 Source: https://gitee.com/noear/weed3 In 2005, I started to write the first generation version of this framework... In 2008, I entered into the Internet company restructuring and wrote a 2-generation version... In 2014, refactoring wrote the current generation 3 ve ...

Posted by silrayn on Thu, 24 Oct 2019 01:05:01 -0700