索引
- PersistentCategoryKeyValueContent
- ITreeContent
- ItemContent
- InstantaneousTreeContent
- ICodedTreeContent
- IKeyValueContent
- InstantaneousCodedTreeContent
- InstantaneousKeyValueContent
- IGlobalizationContent
- EntityUtil
- EntityStore
- ICategoryTreeContent
- ICategoryKeyValueContent
- ICodedCategoryTreeContent
- EntityJoin
- EntityCapsule
- CacheKeyValueContent
- CacheTreeContent
- ClassContent
- ProxySupport
- CacheCodedTreeContent
- Business
- ValidationSupport
- Validation
- IFinallyAspect
- Intercept
- InvokeContext
- IProxyLoader
- ProxyFactory
- IAspect
- IAroundAspect
- FinallyAspectSupport
- AroundAspectSupport
- AOPUnknownBreak
- AOPBreak
- AOPTransactionBreak
- GridView
- JSONOut
- Galleria
- package-frame
- package-summary
- package-tree
- package-use
- LoginSessionListener
- ApplicationContextListener
- TransactionFilter
- FileUploader.FileUploaderStatus
- FileUploader
- CharacterEncodingFilter
- ImageRedirectFilter
- FileUploader.FileUploaderListener
- PrintWriterDecorator
- IFormatter
- TokenPool
- HttpServletResponseDecorator
- HttpServletRequestDecorator
- ICryptography
- DynamicSecret
- CryptographySupport
- OrmTransactionContext
- OrmPersistenceFactory
- OrmPersistenceCollection
- CryptographyFactory
- OrmContexts
- OrmDatabaseTransaction
- OrmDefinitionContext
- OrmManipulationQueryContext
- OrmPersistence
- IOrmPersistence
- IOrmManipulationQuery
- IOrmTransaction
- Order
- OrmConstant
- IOrmDefinition
- DatabaseHelperSupport
- Entity
- FieldProperty
- Fields
- XMLFormatter
- SetList
- AggregateField
- Condition
- DatabaseHelper
- JSONFormatter
- ISetList
- MapList
- Names
- NameValue
- ServiceRouter
- StreamView
- TextView
- XMLView
- IMapList
- ServiceController
- RouterSupport
- Router
- RedirectView
- MVCRenderException
- MVCNotFoundException
- MVCInternalException
- JSPRouter
- JSPView
- Model
- MVCException
- MVCInstantiationException
- IModel
- IRouter
- IView
- JSONView
- JSPController
- ImageView
- IController
- HTMLView
- ForwardView
- Controller
- MailSender
- RandomGenerator
- ReflectionUtil
- ReservedWord
- QRCode
- LoggerSupport
- ChinesePinYin
- HttpExecuter
- IdCardValidator
- ImageValidateCode
- User32.RECT
- User32.SIZE
- KCLInformation
- IAppender
- Logger
- User32.POINT
- User32
- Identify
- FacadeDirectory
- FacadeIO
- TextReader
- TextWriter
- LocalizationLanguage
- Convert
- Comments
- WinFormInstallationBuilder
- WebFormInstallationBuilder
- PersistentTreeContent
- ServiceBusiness
- TreeContent
- CallingOnly
- CodeBuilder
- PersistentCategoryTreeContent
- PersistentCodedCategoryTreeContent
- PersistentCodedTreeContent
- PersistentGlobalizationContent
- PersistentKeyValueContent
- XMLDocumentEx
- WxOAuthAdapter
- WxPayAdapter
- WxSupport
- KCLConfig
- XMLDocument
- WxOAthAdapter
- WxAdapterSupport
- WxBasicAdapter
- WxMenuAdapter
- WxMessageDispatcher
- IWxReceivedListener
- TreeNode
- TreeLeaf
- Tree
- Train
- IWxEventListener
- ITreeNode
- MapQueue
- DateTime
- Forest
- ICache
- IMapQueue
- ThreadUnsafe
- UnimplementedException
- Untested
- ThreadSafe
- Cache
- MultiThreadUnitTest
- Debugger
- IUnitTest
- UnitTest
- Tested
- UploadView
- TreeView
- Paging
- StringHelper
- RichText
- Video
- Music
- ListView
- Label
- KCLTag
com.knots.kcl.orm
Class DatabaseHelperSupport
java.lang.Object com.knots.kcl.orm.DatabaseHelperSupport
public class DatabaseHelperSupport
- extends java.lang.Object
Constructor Summary | |
---|---|
DatabaseHelperSupport(DatabaseHelper helper) |
Method Summary | |
---|---|
boolean | executeNonQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) Execute 'insert', 'update' & 'delete' operation by parameter. |
boolean | executeNonQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) Execute 'insert', 'update' & 'delete' operation by procedure. |
boolean | executeNonQueryByText(java.lang.String cmdText) Execute 'insert', 'update' & 'delete' operation by sql text. |
Entity[] | executeQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by parameter. |
Entity[] | executeQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by procedure. |
Entity[] | executeQueryByText(java.lang.String cmdText) Execute query by sql text. |
Entity | executeScalerQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by parameter to get the first row. |
java.lang.Object | executeScalerQueryByParameter(java.lang.String colName, java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by parameter to get the first cell. |
Entity | executeScalerQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by procedure to get the first row. |
java.lang.Object | executeScalerQueryByProcedure(java.lang.String colName, java.lang.String cmdText, java.lang.Object... cmdParams) Execute query by procedure to get the first cell. |
Entity | executeScalerQueryByText(java.lang.String cmdText) Execute query by sql text to get the first row. |
java.lang.Object | executeScalerQueryByText(java.lang.String colName, java.lang.String cmdText) Execute query by sql text to get the first cell. |
DatabaseHelper | getDatabaseHelper() |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
DatabaseHelperSupport
public DatabaseHelperSupport(DatabaseHelper helper)
Method Detail |
---|
getDatabaseHelper
public DatabaseHelper getDatabaseHelper()
executeNonQueryByText
public boolean executeNonQueryByText(java.lang.String cmdText) throws java.sql.SQLException
- Execute 'insert', 'update' & 'delete' operation by sql text.
- Throws:
java.sql.SQLException
executeNonQueryByParameter
public boolean executeNonQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute 'insert', 'update' & 'delete' operation by parameter.
- Throws:
java.sql.SQLException
executeNonQueryByProcedure
public boolean executeNonQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute 'insert', 'update' & 'delete' operation by procedure.
- Throws:
java.sql.SQLException
executeQueryByText
public Entity[] executeQueryByText(java.lang.String cmdText) throws java.sql.SQLException
- Execute query by sql text.
- Throws:
java.sql.SQLException
executeQueryByParameter
public Entity[] executeQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by parameter.
- Throws:
java.sql.SQLException
executeQueryByProcedure
public Entity[] executeQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by procedure.
- Throws:
java.sql.SQLException
executeScalerQueryByText
public Entity executeScalerQueryByText(java.lang.String cmdText) throws java.sql.SQLException
- Execute query by sql text to get the first row.
- Throws:
java.sql.SQLException
executeScalerQueryByParameter
public Entity executeScalerQueryByParameter(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by parameter to get the first row.
- Throws:
java.sql.SQLException
executeScalerQueryByProcedure
public Entity executeScalerQueryByProcedure(java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by procedure to get the first row.
- Throws:
java.sql.SQLException
executeScalerQueryByText
public java.lang.Object executeScalerQueryByText(java.lang.String colName, java.lang.String cmdText) throws java.sql.SQLException
- Execute query by sql text to get the first cell.
- Throws:
java.sql.SQLException
executeScalerQueryByParameter
public java.lang.Object executeScalerQueryByParameter(java.lang.String colName, java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by parameter to get the first cell.
- Throws:
java.sql.SQLException
executeScalerQueryByProcedure
public java.lang.Object executeScalerQueryByProcedure(java.lang.String colName, java.lang.String cmdText, java.lang.Object... cmdParams) throws java.sql.SQLException
- Execute query by procedure to get the first cell.
- Throws:
java.sql.SQLException