From: George H. <geo...@us...> - 2011-08-10 16:17:10
|
Update of /cvsroot/win32forth/win32forth/src/lib In directory vz-cvs-4.sog:/tmp/cvs-serv11309 Modified Files: SQLite.F SoundVolume.f Log Message: Added initialisation of stmt to SQLite plus id to files Index: SQLite.F =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/SQLite.F,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SQLite.F 4 Aug 2008 13:40:22 -0000 1.2 --- SQLite.F 10 Aug 2011 16:17:07 -0000 1.3 *************** *** 1,2 **** --- 1,4 ---- + \ $Id$ + \ SQLite -- Database Class for SQLite \ Thomas Dixon *************** *** 70,73 **** --- 72,78 ---- 256 bytes tstr + :M ClassInit: ( -- ) + 0 stmt ! ;M \ Make sure this is cleared + :M SQLOK: ( n -- ) \ checks return argument for errors dup 1 99 within if Index: SoundVolume.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/SoundVolume.f,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SoundVolume.f 20 Jul 2011 15:36:42 -0000 1.3 --- SoundVolume.f 10 Aug 2011 16:17:08 -0000 1.4 *************** *** 1,3 **** ! \ SoundVolume.f \ \ Written: by Dirk Busch --- 1,3 ---- ! \ $Id$ \ \ Written: by Dirk Busch |