devxlogo

Replacing OpenTable

Replacing OpenTable

Question:
We have a Large VB application (code wise) and we are movingthe data from MS access to Sybase using the ODBC driver.Now, after we presented the project’s time tale we learnedthat OpenTable does NOT work with ODBC.I need something quick and dirty to get around this problemwithout getting to much involved with the existing code.

Answer:
Actually, the OpenTable call is much like the CreateSnapshot one. Here is an example:

Dim myTable as Table (or is it TableDef)Set myTable = DB.OpenTable(“Suppliers”)Dim mySnapshot as SnapshotSet mySnapshot = DB.CreateSnapshot(“Suppliers”)
You access the data in the table like : myTable(“Field1”), right? Snapshots are done the same way. There are a few limitations of Snapshots via ODBC…for instance, you can’t use the Find methods. You have to manually search the snapshot or use bookmarks.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist