📄 254.htm
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>CTerm非常精华下载</title>
</head>
<body bgcolor="#FFFFFF">
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="577">
<tr><td width="32%" rowspan="3" height="123"><img src="DDl_back.jpg" width="300" height="129" alt="DDl_back.jpg"></td><td width="30%" background="DDl_back2.jpg" height="35"><p align="center"><a href="http://bbs.tsinghua.edu.cn"><font face="黑体"><big><big>水木清华★</big></big></font></a></td></tr>
<tr>
<td width="68%" background="DDl_back2.jpg" height="44"><big><big><font face="黑体"><p align="center"> Delphi编程 (BM: strayli FlyingBoy) </font></big></big></td></tr>
<tr>
<td width="68%" height="44" bgcolor="#000000"><font face="黑体"><big><big><p align="center"></big></big><a href="http://cterm.163.net"><img src="banner.gif" width="400" height="60" alt="banner.gif"border="0"></a></font></td>
</tr>
<tr><td width="100%" colspan="2" height="454"> <p align="center">[<a href="index.htm">回到开始</a>][<a href="185.htm">上一层</a>][<a href="255.htm">下一篇</a>]
<hr><p align="left"><small>发信人: Zeemon (塞下秋), 信区: Visual <br>
标 题: Delphi(8) <br>
发信站: BBS 水木清华站 (Tue Nov 11 20:03:36 1997) <br>
<br>
下文由idol (沉默的人)在浙大BBS西子浣纱城站发表 <br>
<br>
Database <br>
-------- <br>
The Database Desktop does not display automatically created <br>
aliases for ODBC datasources. Always use static, manually <br>
created aliases with the ODBC driver. <br>
<br>
Due to a known bug in Microsoft's ODBC 3.4, connecting to <br>
a database twice with this driver can cause Delphi to shut <br>
down. This problem is fixed in ODBC 3.5. <br>
<br>
The BDE no longer supports DbiUseIdleTime. Use <br>
DbiSaveChanges instead. <br>
<br>
Local SQL queries require a table qualifier or alias name <br>
if the field name is in quotation marks. Examples: <br>
<br>
(BAD) select name AS "First Name" from customer <br>
(OK) select name AS customer."First Name" from customer <br>
(OK) select name AS c."First Name" from customer c <br>
<br>
When you use cached updates, changes made to indexed table <br>
fields are not reflected until the updates are applied. <br>
<br>
If you use cached updates with master/detail tables, TQuery will <br>
re-execute the detail query each time the master record moves. <br>
<br>
Constraint properties for a TField object on a client <br>
dataset are ignored. <br>
<br>
The floating-point format required for custom constraints is <br>
inconsistent with international Windows settings. Always use <br>
periods (.) for decimals in custom constraints. <br>
<br>
Output BLOB parameters are not supported in stored procedures. <br>
<br>
Drag-and-drop copying of tables in the Database Explorer copies <br>
only metadata. Data copying will be supported in future releases. <br>
<br>
Date-grouping on TClientDataSet is not supported in this version. <br>
Date-grouping on TClientDataSet is not supported in this version. <br>
<br>
If an exception occurs inside the FormCreate event of a <br>
remote data module, the excpetion is displayed interactively. <br>
We recommend including a "try ... except" clause to handle <br>
exceptions in these events. <br>
<br>
Save table-level constraints in the Dictionary in the Database <br>
Explorer, then read them from Delphi. (Use UpdateDataSet in <br>
DRIntF.INT.) Saving constraints from Delphi will be supported <br>
in future releases. <br>
<br>
The Database Explorer does not support DB2 on the MVS <br>
or AS/400 platform. <br>
<br>
When setting the BLOB SIZE parameter in the BDE configuration <br>
for the Oracle SQL Links driver, add one to the size to prevent <br>
data loss. For example, to retrieve 32k of data, set BLOB SIZE <br>
to 33 instead of 32. <br>
<br>
Informix users should have the latest client DLLs <br>
(e.g. ISQLT07C.DLL) from Informix. Otherwise you <br>
may get occasional access violations when using <br>
the SQL Explorer. <br>
<br>
If you open a BLOB field on an Informix 7.2 server, <br>
using the Next method to move to another record causes <br>
the server to crash. This is a known problem with the <br>
Informix 7.2 software. <br>
<br>
The CT-Lib driver works with Sybase version 10.0.4 EBF7033 <br>
or higher. <br>
<br>
If you use Sybase drivers with cached updates or client <br>
data sets, and you use a NUMERIC or DECIMAL field, make <br>
sure ENABLE BCD is set to True in the BDE Administrator. <br>
<br>
If you use the Sybase CT-Lib driver, you can't use the <br>
pbBlank parameter to check whether a text field is blank; <br>
the parameter always returns False. Also, blank BLOBs are <br>
always shown as not blank. <br>
<br>
To see Oracle Sequences with the Database Explorer, set <br>
ENABLE BCD to False in the BDE Administrator. <br>
<br>
<br>
Decision Support Components <br>
--------------------------- <br>
If you use the Decision Query editor to access tables that <br>
are not owned by the login user, the generated SQL statements <br>
may by syntactically incorrect. Specifically, you may see <br>
<br>
"OwnerName.TableName" <br>
<br>
where the correct syntax is <br>
<br>
"OwnerName"."TableName" <br>
<br>
If this happens, use the String List editor to edit the dialect <br>
part of the query manually in the TDecisionQuery.SQL property. <br>
(If you open the Decision Cube editor again, however, your edited <br>
query will be overwritten with the incorrect one.) <br>
<br>
The same syntax problem causes the Decision Query to display <br>
an error message when you run the Decision Cube. The message <br>
tells you that the query fields cannot be automatically mapped <br>
to dimensions and summaries. If you get this error message, run <br>
the Decision Cube editor and provide the necessary field name, <br>
grouping, and dimension type manually. <br>
<br>
For more information about using these components, see the <br>
Documentation Updates section above. <br>
<br>
A bug in Intersolve's ODBC-Oracle driver causes it to interpret <br>
"--" as a comment to the end of the file (rather than to the end <br>
of the line). If you are using the Intersolve driver, move lines <br>
that start with "--" to the bottom of the query. Do not remove the <br>
lines altogether, since the Decision Query component uses them. <br>
<br>
<br>
-- <br>
※ 来源:·BBS 水木清华站 bbs.net.tsinghua.edu.cn·[FROM: 162.105.118.41] <br>
</small><hr>
<p align="center">[<a href="index.htm">回到开始</a>][<a href="185.htm">上一层</a>][<a href="255.htm">下一篇</a>]
<p align="center"><a href="http://cterm.163.net">欢迎访问Cterm主页</a></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -