【问题标题】:Oracle: Dynamic Query: ORA-01704: string literal too longOracle:动态查询:ORA-01704:字符串文字太长
【发布时间】:2019-12-24 02:15:10
【问题描述】:

编辑 2:

经过小型研究,我发现问题在于长文本值(超过 2000 个符号)。我在尝试在“EXECUTE IMMEDIATE insert_query;”中执行的 INSERT 语句中将值放在单引号中。

喜欢:

INSERT INTO
tablename(
    field1,
    field2,
    field3
)
VALUES(
    '123',
    'some value',
    'long value more than 2000 symbols'
)

所以真正的问题是:

如何将长值正确插入表中?


我需要将大型字符串数据从外部数据源导入到 Oracle DB。

我有 Oracle 12c (12.1.0.2.0)

我想做什么

这是一个简化的代码,只是为了解释我的想法

CREATE OR REPLACE PROCEDURE parsedata AS 
    TYPE string_dict IS TABLE OF VARCHAR2(100) INDEX BY VARCHAR2(100);
    field_name_list string_dict;
    query_field_list varchar2(3000);
    query_value_list varchar2(10000);
    insert_query varchar2(20000);
    --insert_query CLOB;
BEGIN
    -- Field mapping for data source and destination database
    field_name_list('source_field1') := 'destination_field1';
    field_name_list('source_field2') := 'destination_field2';
    field_name_list('source_field3') := 'destination_field3';

    -- Iterate over records in the data source
    FOR record_index IN 1..record_count_total LOOP
        insert_query := 'INSERT INTO tablename([FIELDS]) VALUES([VALUES])';
        query_field_list := '';
        query_value_list := '';

        -- Iterate over fields per record
        FOR field_index IN 1..field_count_total LOOP
            query_field_list := query_field_list || field_name_list(source_field_name) || ',';
            query_value_list := query_value_list || field_value || ',';     

        insert_query := REPLACE(insert_query, '[FIELDS]', query_field_list);
        insert_query := REPLACE(insert_query, '[VALUES]', query_value_list);
        EXECUTE IMMEDIATE insert_query;
END parsedata;

我有什么

错误:ORA-01704:字符串文字太长在行“立即执行” 插入查询;"

如果我使用 CLOB,我会得到同样的错误

插入查询CLOB;

编辑 1:

我检查了“insert_query”的长度:

length(insert_query)

当长度大于 3000 时出现错误:

长度(插入查询):3038

【问题讨论】:

  • 表中是否有任何列是 clob 的?
  • @Tejash 我在目标表中有 2 个 CLOB 列。但这并不重要,如果需要,我可以将其更改为其他类型。
  • 这似乎应该有效。您确定错误没有发生在附近的另一条线上吗? execute immediate 是否包含任何操作,例如可能引发错误的字符串函数? 12c 中的本机动态 SQL 应该适用于几乎任何长度的 CLOB。错误是否可能来自 SQL 语句本身?
  • @JonHeller 感谢您的评论。我有一个脑电波!该错误恰好在“立即执行”行中。我尝试手动测试最后一个 INSERT 查询,发现 VALUES 存在问题。我将所有值都放在单引号 (') 中。因此,在某些记录中,我在引号中得到了超过 2000 个符号的值。那就是问题所在!如何将长值正确插入表中?

标签: oracle


【解决方案1】:

当您尝试在 字符串长度大于 4000CLOB 列中插入 string 值时会出现此问题。

你需要使用TO_CLOB将字符串转换为CLOB,但不幸的是,它也可以接受4000个字符

要解决此问题,您需要将字符串分成 4000 个字符的块并使用 TO_CLOB,如下例所述:

SQL> CREATE TABLE CLOB_TEST (
  2      MY_CLOB   CLOB
  3  );

Table created.

尝试插入长度为 4282 > 4000 的字符串 -- 错误

SQL> INSERT INTO CLOB_TEST ( MY_CLOB )  -- inserting a string of length 4282 > 4000
  2  VALUES ( '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  3  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  4  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  5  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  6  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  7  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  8  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  9  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 10  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 11  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 12  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 13  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 14  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 15  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 16  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 17  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 18  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 19  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 20  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 21  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 22  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 23  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 24  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 25  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 26  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 27  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 28  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 29  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 30  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 31  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 32  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 33  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 34  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 35  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 36  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 37  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 38  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 39  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 40  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 41  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 42  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 43  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'
 44  );
VALUES ( '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
         *
ERROR at line 2:
ORA-01704: string literal too long

尝试使用 TO_CLOB 插入长度为 4282 的字符串 -- 错误

SQL> INSERT INTO CLOB_TEST ( MY_CLOB )  -- trying to insert the string of length 4282 with TO_CLOB
  2  VALUES ( TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  3  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  4  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  5  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  6  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  7  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  8  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  9  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 10  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 11  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 12  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 13  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 14  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 15  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 16  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 17  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 18  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 19  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 20  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 21  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 22  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 23  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 24  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 25  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 26  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 27  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 28  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 29  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 30  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 31  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 32  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 33  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 34  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 35  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 36  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 37  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 38  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 39  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 40  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 41  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 42  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 43  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'
 44  ) );
VALUES ( TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
                 *
ERROR at line 2:
ORA-01704: string literal too long

尝试插入长度为 3670

SQL> INSERT INTO CLOB_TEST ( MY_CLOB )  -- inserting a string of length 3670
  2  VALUES ( '0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  3  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  4  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  5  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  6  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  7  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  8  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  9  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 10  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 11  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 12  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 13  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 14  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 15  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 16  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 17  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 18  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 19  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 20  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 21  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 22  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 23  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 24  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 25  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 26  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 27  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 28  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 29  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 30  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 31  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 32  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 33  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 34  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 35  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 36  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 37  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'
 38  );

1 row created.

尝试使用 TO_CLOB 插入长度为 4282 的字符串 -- 错误

SQL> INSERT INTO CLOB_TEST ( MY_CLOB )  -- trying to insert the string of length 4282 with TO_CLOB
  2  VALUES ( TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  3  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  4  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  5  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  6  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  7  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  8  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  9  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 10  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 11  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 12  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 13  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 14  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 15  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 16  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 17  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 18  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 19  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 20  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 21  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 22  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 23  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 24  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 25  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 26  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 27  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 28  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 29  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 30  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 31  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 32  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 33  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 34  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 35  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 36  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 37  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 38  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 39  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 40  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 41  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 42  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 43  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'
 44  ) );
VALUES ( TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
                 *
ERROR at line 2:
ORA-01704: string literal too long

尝试用TO_CLOB()将字符串插入长度为(3670,610)的两部分——成功

SQL> INSERT INTO CLOB_TEST ( MY_CLOB ) -- trying to insert the data in two parts(3670,610) with TO_CLOB ()
  2  VALUES ( TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  3  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  4  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  5  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  6  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  7  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  8  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  9  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 10  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 11  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 12  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 13  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 14  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 15  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 16  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 17  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 18  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 19  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 20  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 21  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 22  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 23  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 24  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 25  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 26  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 27  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 28  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 29  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 30  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 31  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 32  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 33  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 34  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 35  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 36  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 37  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789')
 38  --
 39  || TO_CLOB('0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 40  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 41  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 42  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 43  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
 44  0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'
 45  )
 46  );

1 row created.

SQL>

注意:如果你连接两个长度小于 4000 个字符的字符串(导致字符串长度 > 4000),那么它也将不起作用并失败并出现错误:ORA-01489: result of string concatenation is too long

所以结论是使用TO_CLOB 与少于4000 个字符的块并使用连接运算符|| 连接CLOBs

干杯!!

【讨论】:

  • 是的,我在其他帖子中看到了这样的建议。谢谢,会这样做!
猜你喜欢
  • 1970-01-01
  • 2012-12-06
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-09-17
  • 1970-01-01
相关资源
最近更新 更多