Follow the below steps to install the latest version of PostgreSQL on Windows by scoop package manager.
scoop install postgresql -g
unit AsyncThread; | |
interface | |
uses | |
{Delphi} | |
System.SysUtils | |
{Project} | |
; |
Install latest version of MySQL via scoop package manager on Windows. If you want to install specific version of MySQL, just replace "mysql" with "mysql@version". For example: "[email protected]".
scoop install mysql -g
import vibe.d; | |
import vibe.web.rest; | |
import std.array; | |
shared static this() | |
{ | |
auto router = new URLRouter; | |
router.get("/", serveStaticFiles("./../client/index.html")) | |
.get("*", serveStaticFiles("./../client/")); |
List Updated 2024 -> https://docwiki.embarcadero.com/RADStudio/Athens/en/Compiler_Versions | |
{$IFDEF VER80} ShowMessage('Delphi 1');{$ENDIF} | |
{$IFDEF VER90} ShowMessage('Delphi 2');{$ENDIF} | |
{$IFDEF VER100} ShowMessage('Delphi 3');{$ENDIF} | |
{$IFDEF VER120} ShowMessage('Delphi 4');{$ENDIF} | |
{$IFDEF VER130} ShowMessage('Delphi 5');{$ENDIF} | |
{$IFDEF VER140} ShowMessage('Delphi 6');{$ENDIF} |
use std::convert::Infallible; | |
use axum::{ | |
async_trait, | |
extract::FromRequestParts, | |
http::{request::Parts, Request, header::CONTENT_LENGTH}, | |
middleware::{from_fn, Next}, | |
response::{Html, IntoResponse, IntoResponseParts, Response}, | |
routing::get, | |
Router, body::{Full, self}, |
<NotepadPlus> | |
<UserLang name="Golang" ext="go" udlVersion="2.1"> | |
<!-- | |
NPP Syntax Highlight for Go | |
using most used color in NPP for Golang. | |
Author: blinksmith Version: 0.1.3 | |
Last tested in Notepad++ v7.5.9 | |
Quick start : | |
Method 1 |
I assume that you already created C++ Win32 project where you want to include SQLite.
amalgamation
source version of SQLite.Developer Command Prompt for VS ****
which is usually available at Start -> Programs -> Visual Studio **** -> Visual Studio Tools
.cl /c /EHsc sqlite3.c
lib sqlite3.obj
sqlite3.lib
to Linker -> Input -> Additional Dependencies
.Version | [HKCU/HKLM]\Software\ |
---|---|
D4 | Borland\Delphi\4.0 |
D5 | Borland\Delphi\5.0 |
D6 | Borland\Delphi\6.0 |
D7 | Borland\Delphi\7.0 |
D2005 | Borland\BDS\3.0 |
D2006 | Borland\BDS\4.0 |
D2007 | Borland\BDS\5.0 |
D2009 | CodeGear\BDS\6.0 |