1 /*
2 * DdlDAO.java
3 *
4 * Created on 16 de Abril de 2005, 09:14
5 */
6
7 package org.thema.scriptware.dao;
8
9 import java.sql.SQLException;
10 import java.util.Collection;
11
12 /***
13 *
14 * @author Eduardo M . Sasso
15 */
16 public interface DdlDAO {
17 public String getScript(String object, String type) throws SQLException;
18
19 public Collection getScript(String object) throws SQLException;
20
21 public Collection getScriptSQL(String sql) throws SQLException;
22
23 }