标题:请教一个存储过程关于image问题?
只看楼主
missking
Rank: 1
等 级:新手上路
帖 子:93
专家分:0
注 册:2006-4-8
 问题点数:0 回复次数:4 
请教一个存储过程关于image问题?

请教各位,用adostoredproc调用存储过程
try
with datamoduleado.ADOStoredProc1 do
begin
close;
procedurename:='Insert_ReadersInfo';
parameters.Clear ;
// parameters.CreateParameter('@RPhoto',ftimage,pdinput,16,0);
// parameters.ParamByName('@RPhoto').Value :=RPhotoImage.Transparent ;
prepared;
execproc;
end;
except
begin
messagedlg('数据添加失败',mterror,[mbok],0);
exit;
end;
close;
end;
//标有注释的两句出错了,请问用adostoredproc调用存储过程时image控件语法是如何的?标有注释的两行出错了,请教哪位高手能帮帮我

搜索更多相关主题的帖子: image 
2006-04-12 11:13
missking
Rank: 1
等 级:新手上路
帖 子:93
专家分:0
注 册:2006-4-8
得分:0 

怎么都没人理我,好伤心哦


2006-04-12 11:19
tendzzss
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2006-4-10
得分:0 

我想帮你 可是我不会啊
你能帮帮我吗? 我发的帖
http://www.bc-cn.net/bbs/dispbbs.asp?boardID=9&ID=57156&page=1


我的论坛http://www.lovemj.91.tc 有空来玩
2006-04-12 22:13
yuxue1985
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2006-4-13
得分:0 

来我给你一段代码

自己看看,我也给你说了你自己就学不到东西了

我给你的这个代码已经很明白了!·

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DBCtrls, DB, DBTables, StdCtrls, ExtCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Table1: TTable;
DataSource1: TDataSource;
DBImage1: TDBImage;
OpenDialog1: TOpenDialog;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation
uses XMconsts;
{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
if opendialog1.execute then
begin
table1.edit;
Tblobfield(table1.fieldbyname(dbimage1.datafield)).loadfromfile(opendialog1.filename);
table1.post;
end;
dbimage1.loadpicture;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
Caption := '将图片导入到数据库中';
end;

end.

2006-04-13 10:51
missking
Rank: 1
等 级:新手上路
帖 子:93
专家分:0
注 册:2006-4-8
得分:0 
这是什么意思啊?能不能给我解释一下.我是用存储过程实现的,我看你这段代码好像是对表操作

2006-04-13 13:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-56962-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.453384 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved