Asio.Cookbook 第1章 基础

介绍 TCP协议是具有下列特性的传输层协议: 它是可靠的。这意味着TCP协议保证报文以正确的顺序传输,或者通知报文没有传输成功。TCP协议包含错

MySQL Cookbook 第5章 处理字符串

5.0. Introduction A string can be binary or nonbinary. Binary strings are used for raw data such as images, music files, or encrypted values. Nonbinary strings are used for character data such as text and are associated with a character set and collation (sort order). A character set determines which characters are legal in a string. You can choose collations according to whether you need comparisons to be case sensitive

MySQL Cookbook 第4章 表管理

4.0. Introduction This chapter covers topics that relate to creating and populating tables: • Cloning a table • Copying from one table to another • Using temporary tables • Generating unique table names • Determining what storage engine a table uses or converting it from one storage engine to another 4.1. Cloning a Table Problem You want to create a table that has exactly the same structure as an existing

MySQL Cookbook 第2章 编写基于MySQL的程序

2.0. 介绍 MySQL Client API Architecture Each MySQL programming interface covered in this book uses a two-level architecture: The upper level provides database-independent methods that implement database access in a portable way that’s the same whether you use MySQL, PostgreSQL, Ora‐ cle, or whatever. The lower level consists of a set of drivers, each of which implements the details for a

第2章 变量和基本类型

2.1 基础内置类型 C++定义了一组基础类型,包括算术类型和一个特殊的void类型。算术类型表示字符,整型,布尔值和浮点数类型。void类型不关联

Python核心编程 第3章

3.1 语句和语法 关于Python语句的一些规则和符号: 井号(#)指示Python注释。 换行(\n)是标准行分隔符(一个语句一行) 反斜杠(\)延续