This section describes how to create an OLE column in a report. The steps are illustrated using a table that you can create in the Database painter. It must contain at least two columns, id and object:
The id column is an integer and serves as the table’s key.
The object column is a blob datatype and contains OLE objects associated with several OLE servers.
To create the database table:
In the Database painter, create a table to hold the blob (binary large-object) data.
The table must have at least two columns: a key column and a column with the blob datatype. The actual datatype you choose depends on your DBMS. For example, in SQL Anywhere, choose long binary as the datatype for the blob column. For information about datatypes, see your DBMS documentation.
Define the blob columns as allowing NULLs (this allows you to store a row that does not contain a blob).
The following procedure describes how to add a blob column to a report.
To add a blob column to a new report:
Create a new report.
Specify the table containing the blob as the data source for the report.
Be sure to include the key column in the data source. You cannot include the blob column in the data source; if you try, a message tells you that its datatype requires the use of an embedded SQL statement. You add the blob column later in the Report painter workspace. (If you use Quick Select, the blob column is not listed in the dialog box.)
Select Insert>Control>OLE Database Blob and click where you want the blob column in the Design view.
The Database Binary/Text Large Object dialog box displays:
The following procedure describes the properties you need to set for the blob column.
To set properties for a blob column:
(Optional) Enter the client class in the Client Class box. The default is DataWindow.
This value is used in some OLE server applications to build the title that displays at the top of the server window.
(Optional) Enter the client name in the Client Name box. The default is Untitled.
This value is used in some OLE server applications to build the title that displays in the title bar of the server window.
In the Table box, select the database table that contains the blob database column you want to place in the report.
The names of the columns in the selected table display in the Large Binary/Text Columns list.
In the Large Binary/Text Columns box, select the column that contains the blob datatype from the list.
If necessary, change the default key clause in the Key Clause box.
InfoMaker uses the key clause to build the WHERE clause of the SELECT statement used to retrieve and update the blob column in the database. It can be any valid WHERE clause.
Use colon variables to specify report columns. For example, if you enter this key clause:
id = :id
the WHERE clause will be:
WHERE id = :id
Identify the OLE server application by doing one of the following:
If you always want to open the same file in the OLE server application, enter the name of the file in the File Template box.
For example, to specify a particular Microsoft Word document, enter the name of the DOC file. If the file is not on the current path, enter the fully qualified name.
If you do not want to open the same file each time, select an OLE server application from the OLE Class: Description drop-down list.
When the server does not match the OLE blob data If you specify a server that does not match the OLE blob object or if your database contains objects belonging to different servers, the OLE mechanism can usually handle the situation. It looks for the server specified in the object and starts it instead of the server you specified.
Enter text or an expression that evaluates to a string in the Client Name Expression box.
The server might use this expression in the title of the window in the OLE server application. The expression you specify can identify the current row in the report.
Click OK.
InfoMaker closes the dialog box. The blob column is represented by a box labeled Blob in the Design view.
Save the report.
The following screenshot shows what a completed Definition page for a Blob object in a table called ole looks like in the Properties view:
If the blob column is invisible in the report until you activate the OLE server, you can make it easy to find the blob column by adding a border to the object.
Before using the report in an application, you should preview it in the Preview view or in preview mode to see how it works.