Git Product home page Git Product logo

Comments (2)

kubo avatar kubo commented on August 26, 2024

There are three ways. The second and third ones are usually unacceptable.

  1. Use OracleType::CLOB in place of None::<String> and get the CLOB value as Clob.
  2. Use OracleType::Varchar2(4000) in place of None::<String> if the maximum size of CLOB data is 4000.
  3. Use OracleType::Varchar2(32767) in place of None::<String> and change the Oracle initialization parameter MAX_STRING_SIZE to EXTENDED if the maximum size of CLOB data is 32767. (I have not tested this...)
use oracle::sql_type::{Clob, OracleType};
use oracle::Connection;
use std::io::Read; // for clob.read_to_string

const CREATE_TEST_TABLE: &str = "CREATE TABLE test_table (\
        text clob
    )";

fn repro(conn: Connection) {
    let _ = conn.execute("DROP TABLE test_table", &[]);
    conn.execute(CREATE_TEST_TABLE, &[]).unwrap();
    let mut stmt = conn
        .statement("INSERT INTO test_table(text) VALUES (:in1) RETURNING text INTO :out1")
        .build()
        .unwrap();
    let long_text = std::iter::repeat('a').take(4000).collect::<String>();
    stmt.execute_named(&[("in1", &long_text), ("out1", &OracleType::CLOB)])
        .unwrap();
    // https://docs.rs/oracle/latest/oracle/sql_type/struct.Clob.html
    let mut clob: Clob = stmt.returned_values("out1").unwrap().remove(0);
    let mut s = String::new();
    clob.read_to_string(&mut s).unwrap();
    assert_eq!(&s, &long_text);
}

from rust-oracle.

weiznich avatar weiznich commented on August 26, 2024

Thanks for the fast answer. For context the real code casing this is coming from diesel-oci, so it's much more generic and cannot assume much about the actual fields. Solution 2 will not work there. Solution 1 works for CLOB columns, but won't work if the user tries to load a VARCHAR column (diesel-oci does currently not differentiate between these two types). Using the maximal-size variant sounds like it has some negative implications, is that correct?

from rust-oracle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.