From 1b8c78f30b2f53efe747a4c859d0b5714decdaf4 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 5 Apr 2010 09:16:23 +0000 Subject: [PATCH] 2010-04-05 11:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/sddodbc/tests/test1.prg ! Fixed relative path to test.mdb after recent relocation. Still doesn't work though: --- Connect: 1 Error SQLBASE/1901 Not connected Called from DBUSEAREA(0) Called from MAIN(14) --- --- harbour/ChangeLog | 11 +++++++++++ harbour/contrib/sddodbc/tests/test1.prg | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 33c84f0614..d686f9167e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,17 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-05 11:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * contrib/sddodbc/tests/test1.prg + ! Fixed relative path to test.mdb after recent relocation. + Still doesn't work though: + --- + Connect: 1 + Error SQLBASE/1901 Not connected + Called from DBUSEAREA(0) + Called from MAIN(14) + --- + 2010-04-05 11:04 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/xhb/hbxml.c ! Applied recent heavy leak fixes from xhb project. diff --git a/harbour/contrib/sddodbc/tests/test1.prg b/harbour/contrib/sddodbc/tests/test1.prg index 9a4690e755..e72beed5f7 100644 --- a/harbour/contrib/sddodbc/tests/test1.prg +++ b/harbour/contrib/sddodbc/tests/test1.prg @@ -10,7 +10,7 @@ REQUEST SDDODBC, SQLMIX PROC main() RDDSETDEFAULT( "SQLMIX" ) SET( _SET_DATEFORMAT, "yyyy-mm-dd" ) - ? "Connect:", RDDINFO( RDDI_CONNECT, { "ODBC", "DBQ=" + hb_DirBase() + "\..\..\..\hbodbc\tests\test.mdb;Driver={Microsoft Access Driver (*.mdb)}" } ) + ? "Connect:", RDDINFO( RDDI_CONNECT, { "ODBC", "DBQ=" + hb_DirBase() + "..\..\hbodbc\tests\test.mdb;Driver={Microsoft Access Driver (*.mdb)}" } ) ? "Use:", DBUSEAREA( .T.,, "select * from test", "test" ) ? "Alias:", ALIAS() ? "DB struct:", HB_VALTOEXP( DBSTRUCT() )