我是个delphi菜鸟,现在想要编一个程序,实现通过ADO对数据库的连接,要求读取client端发过来的消息,如一个姓名,然后从server端通过ADO连接数据库,从数据库中查询与这个姓名有关的内容,如编号,性别,籍贯等相关内容,最后发送给client端。
我的积分不够发到技术区
请高手赐教,最好能够用ADOQuery实现查询。
多谢多 ......
有三个表:
a(ID1,Name1);
b(ID2,Name2);
c(ID1,ID2);
a中ID1对应的数据有:
a1,a2,...,am
b中ID2对应的数据有:
b1,b2,...bn
在Delphi中如何写高效点的语句,使得能够将下面的数据插入到c表中:
a1,b1
a1,b2
...
a1,bn
...
a2,b1
a2,b2
...
a2,bn
...
...
am,b1
am,b2
...
am,bn
我用的是ADOQuery ......
我要将下面的C语言改写成delphi语言:
fgets(c_str, 80, wmmdat);
if (sscanf(c_str,"%lf%s",&epoch,model) < 2)
{
fprintf(stderr, "Invalid header in model file WMM.COF\n");
exit(1);
}
S3:
......
到公司新学delphi,想问一下combobox的下拉框有两个值1和2,当选择1或2时在combobox中显示为男或女该怎么做
你直接把ComboBox1.Items设置为男、女就行了啊
建议找一些代码例子看一看,然后多动手练习
我猜他是想做成key value的那种形式
我猜也是,那样的话就得用三方控件了,rzcombobox
End_rbody_648855 ......
代码是这样的:
ADOQuery2.Close;
ADOQuery2.SQL.Clear;
ADOQuery2.SQL.Add('insert into jsj615_ORDER_TEMP
values( '''+edit1.Text+''', strtoint(combobox3.Text), strtoint(edit3.Text) )
');
ADOQuery2.Open;
错误是:
在此 ......
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private dec ......