Provided wxDB_XXXX naming for constants

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7057 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2000-04-03 22:34:18 +00:00
parent d22a51d11e
commit 91eebab42f
4 changed files with 25 additions and 17 deletions

View File

@@ -104,7 +104,7 @@ char const *SQL_CATALOG_FILENAME = "catalog.txt";
// SQL Log defaults to be used by GetDbConnection
wxDbSqlLogState SQLLOGstate = sqlLogOFF;
//char SQLLOGfn[DB_PATH_MAX+1] = SQL_LOG_FILENAME;
//char SQLLOGfn[wxDB_PATH_MAX+1] = SQL_LOG_FILENAME;
wxChar *SQLLOGfn = (wxChar*) SQL_LOG_FILENAME;
// The wxDb::errorList is copied to this variable when the wxDb object

View File

@@ -1408,12 +1408,12 @@ void wxDbTable::GetUpdateStmt(char *pSqlStmt, int typeOfUpd, const char *pWhereC
if (CanUpdByROWID())
{
SDWORD cb;
char rowid[ROWID_LEN];
char rowid[wxDB_ROWID_LEN];
// Get the ROWID value. If not successful retreiving the ROWID,
// simply fall down through the code and build the WHERE clause
// based on the key fields.
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, ROWID_LEN, &cb) == SQL_SUCCESS)
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS)
{
wxStrcat(pSqlStmt, "ROWID = '");
wxStrcat(pSqlStmt, rowid);
@@ -1464,12 +1464,12 @@ void wxDbTable::GetDeleteStmt(char *pSqlStmt, int typeOfDel, const char *pWhereC
if (CanUpdByROWID())
{
SDWORD cb;
char rowid[ROWID_LEN];
char rowid[wxDB_ROWID_LEN];
// Get the ROWID value. If not successful retreiving the ROWID,
// simply fall down through the code and build the WHERE clause
// based on the key fields.
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, ROWID_LEN, &cb) == SQL_SUCCESS)
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS)
{
wxStrcat(pSqlStmt, "ROWID = '");
wxStrcat(pSqlStmt, rowid);
@@ -1819,7 +1819,7 @@ wxDbColDataPtr* wxDbTable::SetColDefs (wxDbColInf *pColInfs, ULONG numCols)
/********** wxDbTable::SetCursor() **********/
void wxDbTable::SetCursor(HSTMT *hstmtActivate)
{
if (hstmtActivate == DEFAULT_CURSOR)
if (hstmtActivate == wxDB_DEFAULT_CURSOR)
hstmt = *hstmtDefault;
else
hstmt = *hstmtActivate;
@@ -1912,12 +1912,12 @@ bool wxDbTable::Refresh(void)
if (CanUpdByROWID())
{
SDWORD cb;
char rowid[ROWID_LEN+1];
char rowid[wxDB_ROWID_LEN+1];
// Get the ROWID value. If not successful retreiving the ROWID,
// simply fall down through the code and build the WHERE clause
// based on the key fields.
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, ROWID_LEN, &cb) == SQL_SUCCESS)
if (SQLGetData(hstmt, noCols+1, SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS)
{
wxStrcat(whereClause, queryTableName);
wxStrcat(whereClause, ".ROWID = '");