B
binary
Unregistered / Unconfirmed
GUEST, unregistred user!
在后台SQL中写一个PROCEDURE 取得服务器时间
CREATE PROCEDURE GetDateTime
@Value DateTime OUTPUT
AS
Begin
select @value=getdate()
End
在DELPHI并级版中用ADO通过ODBC连接并执行,
出现"没有可执行的特性"的错误
不改后台存储过程前提下如何改进?
CREATE PROCEDURE GetDateTime
@Value DateTime OUTPUT
AS
Begin
select @value=getdate()
End
在DELPHI并级版中用ADO通过ODBC连接并执行,
出现"没有可执行的特性"的错误
不改后台存储过程前提下如何改进?