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)
      ---
This commit is contained in:
Viktor Szakats
2010-04-05 09:16:23 +00:00
parent d0a044d890
commit 1b8c78f30b
2 changed files with 12 additions and 1 deletions

View File

@@ -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.

View File

@@ -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() )