Added support for insert row functionality. Also added SQLStatement object.
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@503 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -311,6 +311,23 @@ public:
|
||||
return( NULL);
|
||||
}
|
||||
|
||||
FINLINE F_COLUMN * findColumn(
|
||||
F_TABLE * pTable,
|
||||
const char * pszColumnName)
|
||||
{
|
||||
NAME_INFO * pNameInfo;
|
||||
|
||||
if (pTable->pColumnNames)
|
||||
{
|
||||
if ((pNameInfo = pTable->pColumnNames->findName( pszColumnName,
|
||||
NULL)) != NULL)
|
||||
{
|
||||
return( getColumn( pTable, pNameInfo->uiItemNum));
|
||||
}
|
||||
}
|
||||
return( NULL);
|
||||
}
|
||||
|
||||
FINLINE F_INDEX * findIndex(
|
||||
const char * pszIndexName)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user