This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM Author: Afriza N. Arief <[email protected]> | |
@REM ### automatically search for common JRE/JDK folder path ### | |
@echo off | |
set JAVA_CMD= | |
set JGIT_JAR= | |
set JGIT_EXT=.JAR;.SH | |
set JGIT_FILE_PATTERN=*jgit.pgm* | |
if not defined JAVA_HOME for /d %%d in ("C:\Program Files\Java\jre*") do set JAVA_HOME="%%d" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sqlite_cpp-cli.cpp | |
// Demonstrate SQLite ADO.NET Provider with C++/CLI | |
#include "stdafx.h" | |
#using "System.Data.SQLite.dll" // put this file in the project directory | |
using namespace System; | |
using namespace System::Data::SQLite; | |
int main(array<System::String ^> ^args) |
NewerOlder