[plt-scheme] schemeql

From: Paul Steckler (steck at ccs.neu.edu)
Date: Fri Mar 21 10:53:32 EST 2003

Anton van Straaten wrote:
> I'm using the official distribution of DrScheme v202, on Windows 2000 Server
> SP3.  The database is MS SQL Server 6.5 (kinda old, but also pretty
> standard).  The ODBC About pane reports version 3.520.6200.0 for all ODBC
> core components.  The SQL Server driver is version 3.70.09.61.

I'm aware of a recently-fixed bug in SrPersist that *might*
be at work here.  It could be data is getting clobbered by the 
GC.

There were a couple of static variables that were not 
registered with the GC.  If you have a compiler, add 

  scheme_register_extension_global(&srp_name,sizeof(srp_name));
  scheme_register_extension_global(&bufferTable,sizeof(bufferTable));

where all the other similar statements are, and run

  nmake /f srpersist.mak
  nmake install /f srpersist.mak

-- Paul


Posted on the users mailing list.