001    package railo.runtime.type.scope.storage.db;
002    
003    import java.sql.SQLException;
004    
005    import railo.commons.io.log.Log;
006    import railo.runtime.config.Config;
007    import railo.runtime.db.DatasourceConnection;
008    import railo.runtime.exp.PageException;
009    import railo.runtime.type.Query;
010    import railo.runtime.type.Struct;
011    import railo.runtime.type.scope.storage.StorageScopeEngine;
012    import railo.runtime.type.scope.storage.StorageScopeListener;
013    import railo.runtime.type.scope.storage.clean.DatasourceStorageScopeCleaner;
014    
015    public class MySQL extends SQLExecutorSupport {
016    
017            @Override
018            public Query select(Config config, String cfid, String applicationName,
019                            DatasourceConnection dc, int type, Log log,
020                            boolean createTableIfNotExist) throws PageException, SQLException {
021                    // TODO Auto-generated method stub
022                    return null;
023            }
024    
025            @Override
026            public void update(Config config, String cfid, String applicationName,
027                            DatasourceConnection dc, int type, Struct data, long timeSpan,
028                            Log log) throws PageException, SQLException {
029                    // TODO Auto-generated method stub
030    
031            }
032    
033            @Override
034            public void delete(Config config, String cfid, String appName,
035                            DatasourceConnection dc, int type, Log log)
036                            throws PageException, SQLException {
037                    // TODO Auto-generated method stub
038    
039            }
040    
041            @Override
042            public void clean(Config config, DatasourceConnection dc, int type,
043                            StorageScopeEngine engine, DatasourceStorageScopeCleaner cleaner,
044                            StorageScopeListener listener, Log log) throws PageException,
045                            SQLException {
046                    // TODO Auto-generated method stub
047                    
048            }
049    
050    }