public void insertInode(String inode, String owner, String type, String identifier) throws SQLException {
String sql = "INSERT INTO INODE(INODE, OWNER, IDATE, TYPE, IDENTIFIER) VALUES (?,?,CURRENT TIMESTAMP,?,?)";
DotConnect dot = new DotConnect();
dot.setSQL(sql);
dot.addParam(inode);
dot.addParam(owner);
dot.addParam(type);
dot.addParam(identifier);
dot.executeStatement(sql);