Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ADODB Decimal parameter size spec

Status
Not open for further replies.

ronspree

Technical User
May 3, 2003
103
PH
How do I specify size (Decimal(18,9)) in the following code:

Code:
    Dim cmd As ADODB.Command
    Set cmd = New ADODB.Command
    cmd.ActiveConnection = CurrentProject.Connection
    cmd.CommandText = "strGetQuantity"
    cmd.CommandType = adCmdStoredProc
    cmd.parameters.append cmd.createparameter("@Quantity",adDecimal,adParamOutput, [red][b]???[/b][/red])
    . . .

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top