// C# 1.0 Style Threadusing System;using System.Threading; namespace ThreadSample{ class Program { static void Main(string[] args) { // C# 1.0 Style Thread uses ThreadStart ThreadStart ts = new ThreadStart(Work); Thread t1 = new Thread(ts); t1.Start(); for (int count = 0; count < Repetitions; count++) { Console.Write('@'); } } static void Work() { for (int count = 0; count < Repetitions; count++..
Enable SQL Server TCP/IP ProtocolOpen SQL Server Configuration ManagerExpand "SQL Server Network Configuration" and click on "Protocols for MSSQLSERVER"Right click on "TCP/IP" and choose "Enable"Click on "SQL Server Services"Right click on "SQL Server (MSSQLSERVER)" and choose "Restart" Enable TCP/IP Port for SQL Servernetsh advfirewall firewall add rule name=SQLPort dir=in protocol=TCP action=a..
Building Connector/C++ Applications on Windows with Microsoft Visual Studio Directory Structure From https://dev.mysql.com/downloads/connector/cpp/8.0.htmlDownload mysql-connector-c++-8.0.11-windows-x86-64bit.zip fileExtract to $(SolutionDir)connector folder $(SolutionDir)CppConnector$(SolutionDir)connector\include$(SolutionDir)connector\lib64\vs14 Visual Studio Change the build configuration fr..