Imports System.Data.OleDb.OleDbConnection
Module Module1
Sub Main()
Dim connStr As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\CIM_CourseDevelopment\BillOfMaterial.accdb; Persist Security Info=False"
Dim cnn As New OleDb.OleDbConnection(connStr)
Try
cnn.Open()
Console.WriteLine("Connection established")
Console.ReadLine()
cnn.Close()
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
End Sub
End Module
Thursday, May 7, 2020
Connect to MS Access From .Net FrameWork Application
Note that this required a .Net Framework Application. When Microsoft brought out .Net Core, they stop supporting OleDb
Subscribe to:
Post Comments (Atom)
Making Stairs with Landing Revit
This is a really good video, super simple for making stairs in revit with a landing: https://www.youtube.com/watch?v=mjY1uNw1G-0&ab_cha...

No comments:
Post a Comment