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

org.basex.query.func.sql.SqlInit Maven / Gradle / Ivy

There is a newer version: 11.3
Show newest version
package org.basex.query.func.sql;

import static org.basex.query.QueryError.*;

import org.basex.query.*;
import org.basex.query.func.*;
import org.basex.query.value.item.*;
import org.basex.query.value.seq.*;
import org.basex.util.*;

/**
 * Functions on relational databases.
 *
 * @author BaseX Team 2005-22, BSD License
 * @author Rositsa Shadura
 */
public final class SqlInit extends StandardFunc {
  @Override
  public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
    final String driver = toString(exprs[0], qc);
    if(Reflect.find(driver) == null) throw SQL_INIT_X.get(info, driver);
    return Empty.VALUE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy