Starting from Breck's article here:
Building a Link-Checker Inside SQL
I created (copied) a basic procedure to check the HTTP status of a webpage:
CREATE OR REPLACE PROCEDURE sxhttp_head_attributes (
IN url LONG VARCHAR
)
RESULT (
...
We are testing some different grid tools in order to display SQLA 17 data in a client website.
After lots of trial and error I am down to this error message as the grid tool attempts to access a published table of an SQLA ODATA producer:
16:06:06.28...
I am attempting to bring the contents of a Visual FoxPro database into SA 17.0.4.2053.
I have installed VFP 9 using the CD provided by the client and downloaded the OLE DB provider for Microsoft Visual FoxPro as Microsoft says the ODBC driver is no...
SQLA 17.0.4 Build 2053 (also seen in 12 and 16 though)
It appears that fields defined as decimal (30,6) can store more than 6 decimal places.
Take this example:
drop table if exists zMyRate;
create table zMyRate (
ID integer default autoincrement...
Using SQL Anywhere 17.0.4.2053
Setting up ODSL model the documentation indicates that without a model, all tables and views with primary keys are exposed.
If I setup a model and only include the statement for a service
service namespace "OBabyServic...
RESULT clause
The RESULT clause is required to use the procedure in a SELECT statement. The RESULT clause must return two columns. The first column contains HTTP response header, status, and response body attributes, while the second column contains ...
So if we are already utilizing IIS for the front-end portion of the eventual solution, the docs seem to indicate that we will also need a separate webserver as IIS does not support java servlets:
Third-party HTTP server set up
To use OData Producers ...