ms-access-2013

Access VBA to parse json

≡放荡痞女 提交于 2019-12-13 22:33:25
问题 Can someone please help with an Access VBA code to parse the following json text? I need to retrieve the values for author, title, review, original_title, original_review, stars, iso, version, date, product, weight, and id and then loop to the next entry and next entry. { "total": 140, "pages": 28, "this_page": 1, "reviews": [{ "author": "DeveloperToDeveloper", "title": "Just Spectacular", "review": "Finally able to remove the ads! The description is hilarious!! Thanks!!!", "original_title":

Why is my LIKE query not returning any records in Microsoft Access 2013 only?

末鹿安然 提交于 2019-12-13 17:44:09
问题 My SQL query is as follows: SELECT * FROM Suppliers WHERE SupplierName LIKE 's%'; When I submit this query on W3 School's TryIt Editor (v1.2) (http://www.w3schools.com/sql/trysql.asp?filename=trysql_select_like), it returns a number of records where the SupplierName begins with the letter 'S', as expected. However, when I run this query on my own database in Access 2013, it doesn't return any records, even though my table name and field name are identical to W3's sample. Queries not using

C# parameterized query with Domain Aggregate functions (DMin)

爱⌒轻易说出口 提交于 2019-12-13 16:51:50
问题 I want to use the following SQL statement in a small C# application. The SQL statement runs perfect in Access 2013. INSERT INTO adressed_to (dialog,listener) VALUES ( DMin("id", "FIGURE", "char_name='Doe' AND forename='John'"), DMin("id", "DIALOG", "speaker=3 AND dialog_text='some text'") ); When i try to run the following C# code, i get a "Too few parameters" exception, i tripple checked the spelling, i even copied the string from the Access query. Changing the single quotes in double quotes

MS Access query to display rows of table1 which are not in table2 using two fields to diferentiate. (Left-Outer-Join??)

半腔热情 提交于 2019-12-13 08:42:55
问题 Table 1: SalesforceReportWeekly ; Fields: [Opportunity: Store Number], [Target Circuit Completion (FOC)], ... Table 2: SentSalesforceReportWeekly Fields: [Opportunity: Store Number], [Target Circuit Completion (FOC)], ... I need a query that will work in MS Access which will show all rows in the SalesforceReportWeekly that do not have a corresponding row in the SentSalesforceReportWeekly. using the [Opportunity: Store Number] AND the [Target Circuit Completion (FOC)] fields. records where

Modify linked SQL table name in Access 2013

旧时模样 提交于 2019-12-13 07:28:54
问题 I have a SQL table linked in Access. I'd like to know how to change the linked table object to reference a different table with the same design but another name. For example, I link Table1 and create forms with it, and now need to change it to Table2. There doesn't seem to be an easy way to do this. The table Description in Design View contains all the linked database and table information but it's not editable. Using the Linked Table Manager, I can change the database the table comes from,

Connect to MS Access DB (.accdb) Without “Access Database Engine 2010”

寵の児 提交于 2019-12-13 07:00:13
问题 I'm working on a 64 bit C# solution and I wish to connect to an MS Access DB (.accdb file) without installing "Access Database Engine x64". The "Access Database Engine x64" installation demand that the currently installed MS Office version is a 64 bit, which is not an acceptable demand in the company environment. I realized that OLEDB and ODBC demand that "Access Database Engine x64" will be installed. Is there another way to connect to the Access file? Thanks! 回答1: I realized that OLEDB and

MS-Access 2013 with Team Foundation Server

被刻印的时光 ゝ 提交于 2019-12-13 05:55:56
问题 I have access database with form and report that I am changing over time in different scenarios. I would like to be able to track changes and branch modifications. How can I add MS-Access application to TFS? 回答1: Disclosure: I am the owner of the product mentioned in the answer. As there is little merit in adding the whole mdb/accdb-file to version control, you will need to extract the Access objects (forms, reports, etc.) as files to the filesystem. This can be done by using the Application

How to insert a new field into a table which related to another table?

纵然是瞬间 提交于 2019-12-13 04:22:44
问题 I have two tables in MS Access 2013. There are some conditions: 1. Part can only be withdrawn after serviced. 2. After certain time, part will be returned for service again. 3. Part can be recycled. tblService: (ID is the primary key) ID PART_ID SERV_DATE 1 A0001 11/1/2013 2 A0001 11/13/2013 3 A0001 11/25/2013 4 B0001 11/26/2013 5 C0001 12/1/2013 6 C0001 12/10/2013 7 C0001 12/20/2013 8 A0001 12/21/2013 tblWithdraw: (ID is the primary key) ID PART_ID DRAWN_DATE DRAWN_REASON DRAWN_TO 1 A0001 11

MS-Access 2013 Web Apps - Why does GoToRecord break when the view contains a subview?

拜拜、爱过 提交于 2019-12-13 03:04:14
问题 I have a view that has next/previous buttons that allow the user to navigate to the next records, using a GoToRecord macro. When there is no subview, when the user gets to the final record, and then presses Next, they receive an error stating they have gone past the last record and then the view returns to normal (that is, the next/previous controls work). However, when I add in the subview and the user goes past the last record using the Next button, they receive the same error but the view

Access 2013 Sum time values

故事扮演 提交于 2019-12-13 01:28:42
问题 How to make a sum of time values in Access 2013? My column looks like this: (thanks to @HansUp user!) SELECT t.[Time From], t.[Time Until], Format((t.[Time Until] - t.[Time From]), 'h:nn') AS [Total], Format(#08:00# - (t.[Time Until] - t.[Time From]), 'h:nn') AS [Missing] FROM tblVolkan AS t; How can I make a sum of Missing without getting Error? 回答1: You just sum the time spans: SELECT Sum([Time Until] - [Time From]) AS [SumTotal], Sum(#08:00# - ([Time Until] - [Time From])) AS [SumMissing]