All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fun.langel.cql.datasource.Session Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.datasource;

import fun.langel.cql.Language;
import fun.langel.cql.rv.ReturnValue;

/**
 * @author [email protected](GuHan)
 * @since 2022/8/7 06:01
 **/
public interface Session {
    Language lang();

    default ReturnValue executeQuery(String sql) {
        throw new UnsupportedOperationException();
    }

    default Number executeUpdate(String sql) {
        throw new UnsupportedOperationException();
    }

    default Number executeDelete(String sql) {
        throw new UnsupportedOperationException();
    }


    default Number executeInsert(String sql) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy