Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Allow script debugging |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
f0a33927c7b5271d123e38f12e3a94bb |
User & Date: | rmsimpson 2005-12-09 20:01:47.000 |
Context
2005-12-09
| ||
20:02 | Get smarter about exactly what version of the library is being installed check-in: 3e1c49fa29 user: rmsimpson tags: sourceforge | |
20:01 | Allow script debugging check-in: f0a33927c7 user: rmsimpson tags: sourceforge | |
19:59 | 1.0.24.0 check-in: d74c9c5606 user: rmsimpson tags: sourceforge | |
Changes
Changes to bin/Designer/Install.cmd.
︙ | ︙ | |||
26 27 28 29 30 31 32 | ECHO XML File Path: %XMLPATH% ECHO SQLite.DLL Path: %MYDIR%..\ IF NOT EXIST "%XMLPATH%\SQLiteDataViewSupport.xml" ECHO The data view support XML file was not found.& GOTO End IF NOT EXIST "%XMLPATH%\SQLiteDataObjectSupport.xml" ECHO The data object support XML file was not found.& GOTO End IF NOT EXIST "..\System.Data.SQLite.DLL" ECHO The ..\System.Data.SQLite.DLL could not be found.& GOTO End | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | ECHO XML File Path: %XMLPATH% ECHO SQLite.DLL Path: %MYDIR%..\ IF NOT EXIST "%XMLPATH%\SQLiteDataViewSupport.xml" ECHO The data view support XML file was not found.& GOTO End IF NOT EXIST "%XMLPATH%\SQLiteDataObjectSupport.xml" ECHO The data object support XML file was not found.& GOTO End IF NOT EXIST "..\System.Data.SQLite.DLL" ECHO The ..\System.Data.SQLite.DLL could not be found.& GOTO End CScript //D "%MYDIR%\Install.vbs" //NoLogo "%REGROOT%" "%XMLPATH%" GOTO End :Help ECHO DDEX Data Provider for SQLite Installation ECHO Usage: install [/?] [/regroot ^<regroot^>] [/xmlpath ^<xmlpath^>] :End ECHO Done! ENDLOCAL |