
com.caucho.v5.jdbc.JdbcResultSetRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of baratine Show documentation
Show all versions of baratine Show documentation
A reactive Java web server.
package com.caucho.v5.jdbc;
import java.util.LinkedHashMap;
public class JdbcResultSetRow
{
private LinkedHashMap _map;
private Object[] _mapArray;
protected JdbcResultSetRow(LinkedHashMap map)
{
_map = map;
}
public Object get(int index)
{
return _mapArray[index];
}
public Object get(String name)
{
return _map.get(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy