On Thu, Apr 28, 2005 at 07:59:02AM +0200, msaka msaka wrote:
> how to run idxchck under windows?

The Wiki page outlines what is needed:

I suggest:

1. Get Tclkit for Windows:
        http://equi4.com/pub/tk/8.4.9/tclkitsh-win32.upx.exe
        rename tclkitsh-win32.upx.exe tclkitsh.exe

2. Get the the SQLite Tcl bindings for windows:
        http://www.sqlite.org/tclsqlite-3_2_1.zip
        unzip tclsqlite-3_2_1.zip

3. Get idxchk
        http://www.sqlite.org/contrib/download/idxchk?get=7

4. Run it:
        tclkitsh idxchk your.db
        select * from your_table; 
        ^Z

        or
        
        tclkitsh idxchk your.db "select * from your_table"
        

        Of course, you should replace 'your.db' with the name of
        your database, and the select statement with the one
        you want to analyze.  The first example allows you to
        type in your select (or other) statement into stdin,
        the second example is include the select on the command line.





-- 
Tom Poindexter
[EMAIL PROTECTED]
http://www.nyx.net/~tpoindex/

Reply via email to