+ Reply to Thread
Results 1 to 2 of 2

Can an Excel Workbook call an online database?

  1. #1
    Forum Contributor
    Join Date
    03-30-2020
    Location
    Gibraltar, Gibraltar
    MS-Off Ver
    365
    Posts
    150

    Can an Excel Workbook call an online database?

    I have an Excel Sheet that has MySQL Selects, Updates and Inserts. I want to run them from here to save time.
    I have an online MySQL database hosted by TSO hosting.The Queries need to be able to get a result,
    either the result of the SELECT or a confirmation that the UPDATE or INSERT was successful.

  2. #2
    Forum Contributor
    Join Date
    03-30-2020
    Location
    Gibraltar, Gibraltar
    MS-Off Ver
    365
    Posts
    150

    Re: Can an Excel Workbook call an online database?

    I found this if any use:

    CODE/

    Sub test()

    Dim cn As Connection
    Dim rs As Recordset

    Set cn = New Connection
    cn.ConnectionString = "Provider=SQLNCLI11;Password=myPassword;User ID=[username]@[servername];" & _
    "Initial Catalog=databasename;Data Source=tcp:[servername].database.windows.net;"
    cn.Open

    Set rs = New Recordset
    rs.Open "SELECT Top 1 * FROM [SomeTable]", cn, adOpenStatic, adLockReadOnly

    ActiveSheet.Range("a1").CopyFromRecordset rs

    End Sub

    /CODE

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Can an Excel Workbook call an online database?
    By Michael Island in forum Excel General
    Replies: 0
    Last Post: 09-12-2020, 01:20 PM
  2. How Do I Match Excel Entries to Online Database?
    By omaral in forum Excel General
    Replies: 6
    Last Post: 12-28-2016, 03:37 AM
  3. Online Excel Database
    By yashagarwal in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-07-2015, 06:02 PM
  4. Querying Online Database With Excel VBA
    By NeedForExcel in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 09-30-2015, 11:01 PM
  5. Online database for Excel data dump
    By gregersdk in forum Excel General
    Replies: 6
    Last Post: 11-27-2014, 12:08 PM
  6. Excel data live to online Database
    By promoboy2 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-22-2013, 06:02 AM
  7. Is it possible to import data to excel from an access database online?
    By Rob* in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-16-2012, 04:22 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1