MySql My Notes

Create and Use DataBase in MySql Type this code for creating database in MySql create database adeel; Type this code for using by default database.use adeel; Create Table create table TestAdeel (id int, FirstName varchar(255),LastName varchar(255),FatherName varchar(255),Address varchar(255)); Insert into Table Data insert into testadeel (id, FirstName, LastName, FatherName, Address)values(1, ‘Adeel’, ‘Ahmad’, ‘Khalil’, ‘Lahore’); insert…

Creating Active Directory Users automatically Windows server 2012 r2

New-ADUser: Parameters Windows Server In windows server, there are more than 60 parameters, but you don’t need to know them right now. Here are the ones most commonly used to create Active directory user accounts: Helpfull link. Parameter Used to AccountExpirationDate Specify the account’s expiration date AccountPassword Specify the account’s password AuthType Select the authentication…

C# Sharp Learning Notes August 2023 in Urdu

Shortcuts of Visual Studio C# ctrl+alt then select for comment.MULTICURSER FUNCTIONALITYctrl k aor c comment ky liactrl + D —line replicate duplicate. \ not workingalt daba kar line oper nechy C# First Code Console.WriteLine(“Hello G”);Console.Write(“Love for All Hatred for None. “);Console.WriteLine(“Pakistan Zindabad”);Console.ReadLine(); Namespace, Class Program Using System;mean System namespace ke classes use karain gy. like…