From 8493118f58b339019091cc9794d42380c762c377 Mon Sep 17 00:00:00 2001 From: George Tasker Date: Sun, 7 Nov 1999 15:26:56 +0000 Subject: [PATCH] Column name IS_DEVELOPER in index was shortened to IS_DEV to match the column name in the table. These names were shortened to allow use by dBase which only allows 8 character column names git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/db/dbtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/db/dbtest.cpp b/samples/db/dbtest.cpp index 81dfc6e7f7..d5738aa112 100644 --- a/samples/db/dbtest.cpp +++ b/samples/db/dbtest.cpp @@ -434,7 +434,7 @@ bool Ccontact::CreateIndexes(void) bool Ok = TRUE; - strcpy(idxDef[0].ColName, "IS_DEVELOPER"); + strcpy(idxDef[0].ColName, "IS_DEV"); idxDef[0].Ascending = TRUE; strcpy(idxDef[1].ColName, "NAME"); -- 2.45.2