Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

ओरेकल के साथ एन-हाइबरनेट में लंबे तार त्रुटि का कारण बनते हैं

यह .NET द्वारा प्रदत्त System.Data.OracleClient.OracleConnection के साथ एक ज्ञात समस्या है। चालक। फिक्स या तो Oracle द्वारा प्रदान किए गए ODP.net क्लाइंट Oracle.DataAccess.Client.OracleConnection का उपयोग करना है (देखें:http://nuget.org/packages/odp.net.x86/) या निम्नलिखित समाधान का उपयोग करें (इससे संदर्भित:http://thebasilet.blogspot.be/2009/07/nhibernate-oracle-clobs.html )।

public class CustomOracleDriver : OracleClientDriver
{
    protected override void InitializeParameter(System.Data.IDbDataParameter dbParam, string name, SqlType sqlType)
    {
        base.InitializeParameter(dbParam, name, sqlType);


        // System.Data.OracleClient.dll driver generates an ORA-01461 exception because 
        // the driver mistakenly infers the column type of the string being saved, and 
        // tries forcing the server to update a LONG value into a CLOB/NCLOB column type. 
        // The reason for the incorrect behavior is even more obscure and only happens 
        // when all the following conditions are met.
        //   1.) IDbDataParameter.Value = (string whose length: 4000 > length > 2000 )
        //   2.) IDbDataParameter.DbType = DbType.String
        //   3.) DB Column is of type NCLOB/CLOB

        // The above is the default behavior for NHibernate.OracleClientDriver
        // So we use the built-in StringClobSqlType to tell the driver to use the NClob Oracle type
        // This will work for both NCLOB/CLOBs without issues.
        // Mapping file must be updated to use StringClob as the property type
        // See: http://thebasilet.blogspot.be/2009/07/nhibernate-oracle-clobs.html
        if ((sqlType is StringClobSqlType))
        {
            ((OracleParameter)dbParam).OracleType = OracleType.NClob;
        }
    }
}

आपको अपनी SessionFactory . को अपडेट करना होगा इस ड्राइवर का उपयोग करने के लिए, साथ ही StringClob . का उपयोग करने के लिए अपने किसी भी क्लॉब मैपिंग को अपडेट करें कस्टम प्रकार

Map(x => x.EventType).CustomSqlType("Clob").CustomType("StringClob");



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ट्रिगर उदाहरण डालने या अपडेट करने से पहले Oracle

  2. डेटाबेस बनाम टेबलस्पेस, क्या अंतर है?

  3. ORA-12514 TNS:श्रोता वर्तमान में कनेक्ट डिस्क्रिप्टर में अनुरोधित सेवा के बारे में नहीं जानता है

  4. चल रहे चयन कथन को कैसे मारें

  5. ऑरैकल में टेबल कैसे ड्रॉप करें