(If there is a better forum for this query and its potential discussion, please advise)
I believe I am using the DAO3.51 library. I have simple cover functions (below) in Word97SR2/VBA which successfully access my Access97 databases. I can write Word97/VBA which obtains data from local Access97 databases and thereby populate a document. I have written simple Centura/SQL code.
I *have* to start moving towards writing code that accesses a data base from the web site.
At this point I don’t know what the database will be (but I keep hearing the words “SQL”) and I don’t know where the server would be.
I figure that I can do some preparation by taking my existing code and cloning/modifying it towards a better standard. An example of such a step might be to create a private web page that can access my local Access97 database when I am dialled in to the ISP.
How big a step is this? Am I going to have to learn another (web) language? Although it might seem pointless to have a page on the Web that works ONLY when I have 56K-dialled in, it is at least a step away from isolation.
(snip) Dim wrk As Workspace Set wrk = wrkCreateWorkspace("", "admin", "") Dim dbs As Database Set dbs = dbsOpenDatabase(wrk, strPath, strFile) ' given path and file Dim rst As Recordset Set rst = rstOpenRecordset(dbs, "SELECT * from " & strTable) ' given table (snip)