【IT专家】数据类型-文本、MySQL、错误-数据太长 下载本文

内容发布更新时间 : 2024/12/23 9:12:26星期一 下面是文章的全部内容请认真阅读。

本文由我司收集整编,推荐下载,如有疑问,请与我司联系

数据类型:文本、MySQL、错误:数据太长

数据类型:文本、MySQL、错误:数据太长[英]MySQL data type: Text,,, Erroring: Data Too Long I have a field as follows in MySQL: Type: Text Length: 0 Decimals: 0 我在 MySQL 中有如下字段:Type: Text Length: 0 Decimals: 0。

And when I try to insert data around the size of 4 pages of MS Word, Coldfusion errors with: Data Too Long from the DB.

当我试图插入 4 页 MS Word 大小的数据时,Coldfusion 错误是:数据太长,来自 DB。

I thought TEXT data type was able to expand and handle this size of data? What am I

missing and what can I do?

我认为文本数据类型能 MySQL 5.1 Reference Manual :: 10 Data Types :: 10.1 Data Type Overview :: 10.1.3 Overview of String Types

MySQL 5.1 参考手册::10 数据类型::10.1 数据类型概述::10.1.3 字符串类型概述

TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]A

The effective

TEXT column with a maximum length of 65,535 (2 – 1) characters.

maximum length is less if the value contains multi-byte characters. Each TEXT value is stored using a two-byte length prefix that indicates the number of bytes in the value. 如果值包含多字节字符,则有效的最大长度小于该值。每个文本值都使用一个双 字节长度前缀存储,该前缀表示值中的字节数。

An optional length M can be given for this type. If this is done, MySQL creates the column as the smallest TEXT type large enough to hold values M characters long. 可以为这种类型提供可选长度 M。如果这样做,MySQL 将列创建为最小的文本 类型,其大小足以容纳长度为 M 个字符的值。 I think you’d better use BLOB for that column. 我认为你最好用 BLOB 表示那一列。

MySQL 5.0 Reference Manual :: 10 Data Types :: 10.4 String Types :: 10.4.3 The

本文由我司收集整编,推荐下载,如有疑问,请与我司联系

BLOB and TEXT Types

MySQL 5.0 参考手册:::10 数据类型::10.4 字符串类型:::10.4.3 BLOB 和文本类型 tips:感谢大家的阅读,本文由我司收集整编。仅供参阅!