| Author |
Message |
kingkee Guest
|
Posted: Mon May 12, 2003 5:43 pm Post subject: datetime fields |
|
|
How do I get the datetime fields/parameters of a storedproc to work? I always get the error message, "invalid argument in datetime encode"?
What's that about then? |
|
| Back to top |
|
 |
VISOCO Support VISOCO Software Support
Joined: 16 Jul 2002 Posts: 96
|
Posted: Thu May 15, 2003 8:05 am Post subject: |
|
|
DataType of parameter must be ftTimeStamp:
| Code: |
SQLStoredProc.Params[0].AsSQLTimeStamp := DateTimeToSQLTimeStamp(Now);
|
|
|
| Back to top |
|
 |
|