sql >> Databasteknik >  >> RDS >> Mysql

Hur hanterar man BLOB och CLOB i olingo v2?

Om du använder MySQL kräver det ytterligare en ExceptionInterceptor tillsammans med Blob-implementeringen. Du kan ha en anpassad implementering av ExceptionInterceptor och använd den för att initiera Blob-fältet.

Koden för att uppnå det skulle vara följande

import java.sql.Blob;
import java.sql.Clob;
import java.util.Properties;

import org.apache.olingo.odata2.jpa.processor.api.OnJPAWriteContent;
import org.apache.olingo.odata2.jpa.processor.api.exception.ODataJPARuntimeException;

import com.mysql.cj.exceptions.ExceptionInterceptor;
import com.mysql.cj.log.Log;

public class CustomOnJPAWriteContent implements OnJPAWriteContent {

    @Override
    public Blob getJPABlob(byte[] binaryData) throws ODataJPARuntimeException {
        return new com.mysql.cj.jdbc.Blob(binaryData, exceptionInterceptor);
    }

    @Override
    public Clob getJPAClob(char[] characterData) throws ODataJPARuntimeException {
        
        return new com.mysql.cj.jdbc.Clob(new String(characterData), exceptionInterceptor);

    }

    ExceptionInterceptor exceptionInterceptor = new ExceptionInterceptor() {

        @Override
        public Exception interceptException(Exception sqlEx) {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public ExceptionInterceptor init(Properties props, Log log) {
            // TODO Auto-generated method stub
            return null;
        }

        @Override
        public void destroy() {
            // TODO Auto-generated method stub

        }
    };

}



  1. Mysql-index på vy fungerar inte

  2. PostgreSQL VISNINGSTABELLER Motsvarande (psql)

  3. MySQL - Hur begränsar man ett resultat per ID?

  4. REGEXP_COUNT() Funktion i Oracle