Premium Only Content
Getting UPC Data from the Web and Parsing it Into a Table
This video tell how to retrieve UPC information from a public database on the web and parse it into fields in your MS Access database. A series of queries finishes the job and puts the data into a table.
The code I used:
Public Sub ReadJSON(UPC As String)
Dim reader As New XMLHTTP60
Dim URL As String
Dim db As DAO.Database
Dim rs As DAO.Recordset
URL = "https://api.upcitemdb.com/prod/trial/lookup?upc=" & UPC
reader.Open "get", URL, False
reader.send
Do Until reader.ReadyState = 4
DoEvents
Loop
If reader.status = 200 Then
Set db = CurrentDb
Set rs = db.OpenRecordset("json", dbOpenDynaset, dbSeeChanges)
rs.AddNew
rs!inputtext = reader.responseText
rs.Update
DoEvents
Else
Dim errorcode As Integer
errorcode = reader.status
MsgBox "Connection not made. Error code " & errorcode
End If
End Sub
See my other channels:
Current news on the economy and economic concepts: https://www.youtube.com/channel/UCl0IMB6BJMSNuNN5rPd6jxw
Current thoughts on leadership topics: https://www.youtube.com/channel/UCDsp8v1TezEiXIdgVijDK7w
Blockchain and Cryptocurrency News:
https://www.youtube.com/channel/UCP3uIfVMCTSNfpvwHf6EEow
-
8:52
Pharos Technology
1 year agoMaking a Combo Box Filter for your Forms
31 -
2:00:10
Bare Knuckle Fighting Championship
3 days agoCountdown to BKFC on DAZN HOLLYWOOD & FREE LIVE FIGHTS!
45.2K3 -
2:53:01
Jewels Jones Live ®
1 day agoA MAGA-NIFICENT YEAR | A Political Rendezvous - Ep. 103
111K27 -
29:54
Michael Franzese
13 hours agoCan Trump accomplish everything he promised? Piers Morgan Article Breakdown
111K49 -
2:08:19
Tactical Advisor
17 hours agoThe Vault Room Podcast 006 | Farwell 2024 New Plans for 2025
183K11 -
34:12
inspirePlay
1 day ago $5.55 earned🏆 The Grid Championship 2024 – Cass Meyer vs. Kelly Rudney | Epic Battle for Long Drive Glory!
84K8 -
17:50
BlackDiamondGunsandGear
14 hours ago $2.84 earnedTeach Me How to Build an AR-15
58.3K6 -
9:11
Space Ice
1 day agoFatman - Greatest Santa Claus Fighting Hitmen Movie Of Mel Gibson's Career - Best Movie Ever
116K47 -
42:38
Brewzle
1 day agoI Spent Too Much Money Bourbon Hunting In Kentucky
78.7K12 -
1:15:30
World Nomac
23 hours agoMY FIRST DAY BACK in Manila Philippines 🇵🇭
60.9K9