|
Di seguito gli articoli e le fotografie pubblicati nella giornata richiesta.
Articoli del 28/04/2010
Di cj (pubblicato @ 17:58:07 in SQL Server, linkato 201767 volte)
Questo che segue è un semplice esempio dell'uso di MS Excel come front-end per una semplice query su MS SQL Server.
Sub ADOExcelSQLServer()
Dim Cn As ADODB.Connection
Dim Server_Name As String
Dim Database_Name As String
Dim User_ID As String
Dim Password As String
Dim SQLStr As String
Dim rs As ADODB.Recordset
Set rs = New ADODB.Recordset
Server_Name = "LAPTOP\SQL_EXPRESS" ' Enter your server name here
Database_Name = "Northwind" ' Enter your database name here
User_ID = "" ' enter your user ID here
Password = "" ' Enter your password here
SQLStr = "SELECT * FROM Orders" ' Enter your SQL here
Set Cn = New ADODB.Connection
Cn.Open "Driver={SQL Server};Server=" & Server_Name & ";Database=" & Database_Name & _ ";Uid=" & User_ID & ";Pwd=" & Password & ";" rs.Open SQLStr, Cn, adOpenStatic
With Worksheets("Sheet1")
.Range("A2:Z500")
.ClearContents
.CopyFromRecordset rs
End With
rs.Close
Set rs = Nothing
Cn.Close
Set Cn = Nothing
End Sub
Di cj (pubblicato @ 07:28:20 in Hardware, linkato 21850 volte)
È stata una delle prime tecnologie di archiviazione ad avere una diffusione di massa, ma ormai il progresso, dopo circa 30 anni, ha portato nuovi prodotti più veloci e capienti.
Dal marzo del 2011, Sony, che ha inventato il formato da 3,5 pollici di cui detiene ancora una quota del 70% di mercato, interromperà la produzione dei floppy disk e quindi manderà in pensione i famosi “dischetti” di plastica.
Fotografie del 28/04/2010
Di cj (pubblicato @ 22:59:37, vista 8089 volte)
Di cj (pubblicato @ 22:58:45, vista 25960 volte)
JuniorSoft - Soluzioni e Tecnologie Informatiche ...
Di cj (pubblicato @ 22:58:17, vista 5073 volte)
Di cj (pubblicato @ 22:40:28, vista 24969 volte)
Di cj (pubblicato @ 22:40:07, vista 22869 volte)
Di cj (pubblicato @ 22:38:42, vista 160660 volte)
Notizie da un giornale ...
|