-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResul_SQL_NETCore2.0.txt
More file actions
46 lines (39 loc) · 1.65 KB
/
Resul_SQL_NETCore2.0.txt
File metadata and controls
46 lines (39 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
moha@libre:~$ dotnet new console -o PrimeraAppConsoleNC
|
|
+
moha@libre:~/PrimeraAppConsoleNC$ ls
bin obj PrimeraAppConsoleNC.csproj Program.cs
|
|
+
moha@libre:~$ sudo dotnet run --project PrimeraAppConsoleNC/PrimeraAppConsoleNC.csproj
Hola!
Esta es la primera aplicación NET Core 2.0
-----------------------------------------------------------------------------------------
Primer Acceso a SQL Server:
moha@libre:~$ sqlcmd -S localhost -U SA -p
Password:
1>
Creación:
1> CREATE DATABASE testbb
2> go
Network packet size (bytes): 4096
1 xact[s]:
Clock Time (ms.): total 827 avg 827.0 (1.2 xacts per sec.)
1>
Consulta:
1> SELECT Name from sys.Databases;
2> go
Name
-----------------------------------------------------------------------------------------
master
tempdb
model
msdb
testbb
(5 rows affected)
Network packet size (bytes): 4096
1 xact[s]:
Clock Time (ms.): total 54 avg 54.0 (18.5 xacts per sec.)
1>