Package com.liferay.portal.kernel.dao.db
Interface DBProcess
- All Known Implementing Classes:
BaseAdminPortletsUpgradeProcess
,BaseBadColumnNamesUpgradeProcess
,BaseCompanyIdUpgradeProcess
,BaseDBColumnSizeUpgradeProcess
,BaseDBProcess
,BaseExternalReferenceCodeUpgradeProcess
,BaseLastPublishDateUpgradeProcess
,BaseLocalizedColumnUpgradeProcess
,BasePortletIdUpgradeProcess
,BasePortletPreferencesUpgradeProcess
,BaseReplacePortletId
,BaseRepositoryUpgradeProcess
,BaseSQLServerDatetimeUpgradeProcess
,BaseStagingGroupTypeSettingsUpgradeProcess
,BaseStaleUserIdUpgradeProcess
,BaseThemeIdUpgradeProcess
,BaseUuidUpgradeProcess
,BaseViewActionResourcePermissionUpgradeProcess
,CamelCaseUpgradePortletPreferences
,CTModelUpgradeProcess
,DummyUpgradeProcess
,GuestUnsupportedResourcePermissionsUpgradeProcess
,MVCCVersionUpgradeProcess
,PortalPreferencesUpgradeProcess
,UpgradeModules
,UpgradeMVCCVersion
,UpgradeProcess
,ViewCountUpgradeProcess
public interface DBProcess
- Author:
- Hugo Huijser, Brian Wing Shun Chan
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
runSQL
(DBTypeToSQLMap dbTypeToSQLMap) void
void
void
runSQL
(Connection connection, String template) void
runSQLFile
(String path) void
runSQLFile
(String path, boolean failOnError) default void
runSQLTemplate
(String path) Deprecated.void
runSQLTemplate
(String template, boolean failOnError) default void
runSQLTemplateString
(String template, boolean failOnError) Deprecated.As of Cavanaugh (7.4.x), replaced byrunSQLTemplate(String, boolean)
-
Method Details
-
runSQL
- Throws:
IOException
SQLException
-
runSQL
- Throws:
IOException
SQLException
-
runSQL
- Throws:
IOException
SQLException
-
runSQL
- Throws:
IOException
SQLException
-
runSQLFile
- Throws:
IOException
NamingException
SQLException
-
runSQLFile
- Throws:
IOException
NamingException
SQLException
-
runSQLTemplate
@Deprecated default void runSQLTemplate(String path) throws IOException, NamingException, SQLException Deprecated.As of Cavanaugh (7.4.x), replaced byrunSQLFile(String)
- Throws:
IOException
NamingException
SQLException
-
runSQLTemplate
void runSQLTemplate(String template, boolean failOnError) throws IOException, NamingException, SQLException - Throws:
IOException
NamingException
SQLException
-
runSQLTemplateString
@Deprecated default void runSQLTemplateString(String template, boolean failOnError) throws IOException, NamingException, SQLException Deprecated.As of Cavanaugh (7.4.x), replaced byrunSQLTemplate(String, boolean)
- Throws:
IOException
NamingException
SQLException
-
runSQLFile(String)