<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>数据处理</title>
<link>/html/Database/aaaafsdfasdf/index.html</link>
<description>数据库开发 / 数据处理</description>
<language>zh-cn</language>
<generator>&lt;a href='mailto:webmaster@delphichm.com'&gt;
Copyright@delphichm,&lt;/a&gt;2006-2009.&lt;br/&gt;All Rights Reserved.&lt;br/&gt;
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/1120570.js&quot;&gt;&lt;/script&gt;
</generator>
<webmaster>webmaster@delphichm.com</webmaster>
<item>
    <title>delphi Delphi 中使用原生 ADO 控制数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070709/328.html</link>
    <description>我发现很多朋友在开发数据库时都使用 Delphi 自带的 ADO 组件 或 Diamond ADO，其实在 Delphi 中使用原生 ADO 接口也是十分方便和有效的。我使用原生 ADO 开发项目已有很长一段时间，也回答过一些朋友类似的问题，现在把自己的一点心得与大家分享，班门弄斧，只是希望</description>
    <pubDate>2007-07-09</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>网络</comments>
</item>
<item>
    <title>delphi Oracle9i 如何用sysdba连接数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070704/305.html</link>
    <description>Neither of these work Provider=MSDAORA.1; Password=sys; User ID=sys; Data Source=ora9.local; Persist Security Info=True DBA Privilege=SYSDBA; Provider=OraOLEDB.Oracle.1; Password=sys; Persist Security Info=True; User ID=sys; Data Source=ora9.local;</description>
    <pubDate>2007-07-04</pubDate>
    <category>数据处理</category>
    <author>Steve</author>
    <comments>国外</comments>
</item>
<item>
    <title>delphi 如何给日期时间字段赋空值</title>
    <link>/html/Database/aaaafsdfasdf/20070704/304.html</link>
    <description>TADOTable.FieldByName('MyField').AsDateTime := ?</description>
    <pubDate>2007-07-04</pubDate>
    <category>数据处理</category>
    <author>Tom</author>
    <comments>国外</comments>
</item>
<item>
    <title>delphi Delphi_有关ADO专题</title>
    <link>/html/Database/aaaafsdfasdf/20070703/252.html</link>
    <description>ADO架构图: 消费者 (Recordset) 提供者 消费者 提供者 程应 ↗ ↘ OLEDB 服务器件 OLEDB 数据库 keyset Cursor与Dynamic Cursor的执行过程: 1、 数据库只把记录的键值放入结果数据集中 2、 ADO Cursor Engine存取客户需要的记录 3、 OLE Provider再根据结果数据集中的</description>
    <pubDate>2007-07-03</pubDate>
    <category>数据处理</category>
    <author>轶名</author>
    <comments>网络</comments>
</item>
<item>
    <title>delphi Base64编码/解码及ZLib压缩/解压</title>
    <link>/html/Database/aaaafsdfasdf/20070629/225.html</link>
    <description>最近在写的程序与SOAP相关,所以用到了一些Base64编码/解码及数据压缩/解压方面的知识. 在这里来作一些总结: 一.Base64编码/解码 一般用到的是Delphi自带的单元EncdDecd,当然还有第三方提供的单元或控件,其中我所接触到的认为比较好的有Indy的TIdMimeEncode / TIdMimeDe</description>
    <pubDate>2007-06-29</pubDate>
    <category>数据处理</category>
    <author>轶名</author>
    <comments>网络</comments>
</item>
<item>
    <title>delphi Delphi下的ADO</title>
    <link>/html/Database/aaaafsdfasdf/20070622/40.html</link>
    <description>在每一台PC中安装ADO，而将来这种安装技术将消失。如果想进一步学习UDA及ADO，可以访问微软的数据访问主页http://www.microsoft.com/data/default.htm，从这个主页上，不但可以载到 ADOredistributable,用他可以在windows95/98/nt安装ADO，也能得到MDAC的SDK，包含了完</description>
    <pubDate>2007-06-22</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 计算字段值</title>
    <link>/html/Database/aaaafsdfasdf/20070621/39.html</link>
    <description>需要对某字段的所有记录求和，使用如下代码：
var i:double;
{$R *.DFM}
procedure TForm1.Table1CalcFields(dataset: Tdataset);
var
Goodsgold:double;</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 数据库事务处理</title>
    <link>/html/Database/aaaafsdfasdf/20070621/38.html</link>
    <description>---- 与缓冲机制有关的属性和方法如下，只有在缓冲机制下，即CachedUpdates:=True时，以下属性和方法才有效： 

---- CachedUpdates(属性)：为True时，打开缓冲机制。 
---- UpdatesObject(属性)：可以放置一个TUpdateSql组件的SQL语句，并可自动执行，也可以由OnUpd</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 运行创建、删除字段</title>
    <link>/html/Database/aaaafsdfasdf/20070621/37.html</link>
    <description>procedure TForm1.Button2Click(Sender: TObject);
var
  T: TStringField;
begin
  Query1.Close;
  T := TStringField.Create(Self);
  T.FieldName := 'CO_NAME';
  T.Name := Query1.Name + T.FieldName;
  T.Index := Query1.FieldCount;
  T.DataSet :</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 输入图片到Blob字段</title>
    <link>/html/Database/aaaafsdfasdf/20070621/36.html</link>
    <description>    DeleteFile(FileName); 
 {Get a temp file name} 
  FileName := GetTemporaryFileName; 
 {Create a temp file stream} 
  FileStream := TFileStream.Create(FileName, 
                                   fmCreate or fmOpenWrite); </description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 从Blob字段中提取图片</title>
    <link>/html/Database/aaaafsdfasdf/20070621/35.html</link>
    <description>从Blob字段中提取图片</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 限制数据库输入格式</title>
    <link>/html/Database/aaaafsdfasdf/20070621/34.html</link>
    <description>定义DataSet的Field的EditMask </description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 过滤器的用法</title>
    <link>/html/Database/aaaafsdfasdf/20070621/33.html</link>
    <description>  当我们在操作数据集时，往往需要对数据进行筛眩例如：一个名为Customer的数据表，它具有CustNo、CustName、Country、Address、Phone、State、TaxRate等字段，如果只想查看国别为China或顾客号大于1000的顾客记录，就需要对数据集进行过滤。经总结，有下面这些过滤方法</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 如何自动实现Login数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070621/32.html</link>
    <description>用户名和密码的ODBC驱动，可以设置USERNAME和PASSWORD为空</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 多线程执行数据库查询</title>
    <link>/html/Database/aaaafsdfasdf/20070621/31.html</link>
    <description>多线程执行数据库查询
begin
  { Run two separate queries, each in their own thread }
  RunBackgroundQuery(Session1, DataBase1, Query1, 
Datasource1);
  RunBackgroundQuery(Session2, DataBase2, Query2, </description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 实现不同数据库间数据转移</title>
    <link>/html/Database/aaaafsdfasdf/20070621/30.html</link>
    <description>{$R *.DFM}
procedure TfrmConvertDB.btnOKClick
 (Sender: TObject);
var iField :integer;
begin
 if ((edTotbl.text&lt;&gt;'') and 
 (edFromtbl.text&lt;&gt;''))then begin</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 数据库应用程序开发中图像数据的存取技术</title>
    <link>/html/Database/aaaafsdfasdf/20070621/29.html</link>
    <description>Delphi提供了数据访问(DataAccess)和数据控制(DataControls)的可视化控件，能够方便快捷地产生具有良好界面且功能强大的数据库应用程序。对于涉及图像数据(含Graphic字段)的数据库应用程序，如人事管理信息系统等，图像数据的存取技术是一个关键。然而，有关Delphi下图</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 开发数据库程序经验三则</title>
    <link>/html/Database/aaaafsdfasdf/20070621/28.html</link>
    <description>1.建立临时表 数据输入是开发数据库程序的必然环节。在Client/Server结构中，客户端可能要输入一批数据后，再向服务器的后台数据库提交，这就需要在本地（客户端）建立临时数据表来存储用户输入的数据，待提交后，清除本地表数据。这种方法的好处是：提高输入效率，减</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 利用TBatchMove组件完成数据库批处理</title>
    <link>/html/Database/aaaafsdfasdf/20070621/27.html</link>
    <description>利用TBatchMove组件完成数据库批处理</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 将纯文本导入数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070621/26.html</link>
    <description>将纯文本导入数据库</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 处理数据库日期型字段的显示与输入</title>
    <link>/html/Database/aaaafsdfasdf/20070621/25.html</link>
    <description>处理数据库日期型字段的显示与输入</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 设定TField为空值</title>
    <link>/html/Database/aaaafsdfasdf/20070621/24.html</link>
    <description>设定TField为空值</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 打开带密码的数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070621/23.html</link>
    <description>打开带密码的数据库</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi InsertRecord和AppendRecord 的一条注意事项</title>
    <link>/html/Database/aaaafsdfasdf/20070621/22.html</link>
    <description>在用InsertRecord插入一条记录时，发现有两个字段颠倒了。又核对了一
遍数据库(table)中的字段顺序，没有发现不一致的地方。想起用了Field
Editor，会不会是……打开Field Editor，果然，为了显示的需要，我把
其中两个字段对调了位置。原来，InsertRecord中的字段顺</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 运行中动态生成数据库</title>
    <link>/html/Database/aaaafsdfasdf/20070621/21.html</link>
    <description>      add('No',ftInteger,0,false);
      add('Name',ftString,0,false);
      ...
    end;
    with indexdefs do
    begin
      clear;
      add('primary','no',[ixPrimary,ixUnique]);
</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>秩名</author>
    <comments>笨鱼技术网</comments>
</item>
<item>
    <title>delphi 显示OLE字段内容</title>
    <link>/html/Database/aaaafsdfasdf/20070621/20.html</link>
    <description>用olecontainer显示的话
procedure savetodb;//保存到数据库
var
  st:TStringStream;
begin
  st := tstringstream.create(''); 
  olecontainer1.createfromfile('c:\xxx.cdx',true);//也可以是..('xx.cdx',false);
  olecontainer1.savetostream(st);</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 数据文件路径管理</title>
    <link>/html/Database/aaaafsdfasdf/20070621/19.html</link>
    <description>Delphi中的Table控件（Component）和Query控件都有一个DatabaseName属性。可以用DatabaseName属性来指定该控件所引用的数据表的路径。有两种方法可以为属性DatabaseName设置路径：第一种方法是直接输入数据表所在路径，另一种方法是使用数据库别名（Alias）。在Delphi中</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 快速表更新</title>
    <link>/html/Database/aaaafsdfasdf/20070621/18.html</link>
    <description>快速表更新</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi 使用TQuery 的误区</title>
    <link>/html/Database/aaaafsdfasdf/20070621/17.html</link>
    <description>TQuery 的误区</description>
    <pubDate>2007-06-21</pubDate>
    <category>数据处理</category>
    <author>bill</author>
    <comments>站内</comments>
</item>
<item>
    <title>delphi DataSet数据复制</title>
    <link>/html/Database/aaaafsdfasdf/20070614/5.html</link>
    <description>Dataset 复制</description>
    <pubDate>2007-06-14</pubDate>
    <category>数据处理</category>
    <author>秩名</author>
    <comments>笨鱼技术网</comments>
</item>

</channel>
</rss>
