2014/12/04
2014/12/01
VBA current timestamp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function timestamp() As String | |
timestamp = Format(Now(), "yyyy-MM-dd hh:mm:ss") | |
End Function |
Generate Guid in VBA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function getGUID() As String | |
getGUID = Mid$(CreateObject("Scriptlet.TypeLib").GUID, 2, 36) | |
End Function |
How to connect to Sql Server local database file (localDB) with VBA ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub run() | |
Dim conn As ADODB.Connection | |
Dim rs As ADODB.Recordset | |
Dim sqlStr As String | |
Dim dbFilePath As String | |
Dim dbName As String | |
dbName = "DbInjectorsCatalog" | |
dbFilePath = "C:\Users\marcinchyl\Desktop\Marcin2\Projects\InjectorsCatalog\Admin\DbInjectorsCatalog.mdf" | |
connStr = "Driver={SQL Server native Client 11.0};Server=(LocalDB)\v11.0;AttachDBFileName=" & dbFilePath & ";Database=" & dbName & ";Trusted_Connection=Yes" | |
sqlStr = "Select * from Injectors" | |
Set conn = New ADODB.Connection | |
conn.ConnectionString = connStr | |
conn.Open | |
Set rs = conn.Execute(sqlStr) | |
Do While Not rs.EOF | |
Debug.Print rs!Number | |
rs.MoveNext | |
Loop | |
rs.Close | |
Set rs = Nothing | |
End Sub |
Subscribe to:
Posts (Atom)