Click here to Skip to main content
15,921,250 members
Home / Discussions / Database
   

Database

 
Questionfind discrepancy between two tables Pin
sqldba14-May-08 23:50
sqldba14-May-08 23:50 
AnswerRe: find discrepancy between two tables Pin
Alsvha15-May-08 0:09
Alsvha15-May-08 0:09 
GeneralRe: find discrepancy between two tables Pin
Naveed Kamboh15-May-08 1:52
Naveed Kamboh15-May-08 1:52 
GeneralRe: find discrepancy between two tables Pin
Alsvha15-May-08 23:08
Alsvha15-May-08 23:08 
QuestionProblem in select Pin
ksaw12314-May-08 21:52
ksaw12314-May-08 21:52 
AnswerRe: Problem in select Pin
Nic Rowan14-May-08 22:40
Nic Rowan14-May-08 22:40 
GeneralRe: Problem in select Pin
mr_lasseter15-May-08 4:13
mr_lasseter15-May-08 4:13 
GeneralRe: Problem in select Pin
Nic Rowan15-May-08 22:15
Nic Rowan15-May-08 22:15 
QuestionHelp changing Server Collation. [modified] Pin
Nic Rowan14-May-08 21:31
Nic Rowan14-May-08 21:31 
Questionproblem saving arabic data Pin
Boshkash14-May-08 5:22
Boshkash14-May-08 5:22 
AnswerIGNORE Pin
leckey14-May-08 8:18
leckey14-May-08 8:18 
QuestionHow can set a picture in Access database? Pin
Le@rner14-May-08 2:18
Le@rner14-May-08 2:18 
AnswerRe: How can set a picture in Access database? Pin
Blue_Boy14-May-08 2:59
Blue_Boy14-May-08 2:59 
QuestionCorrelated sub query issue Pin
AJ du Plessis14-May-08 0:59
AJ du Plessis14-May-08 0:59 
AnswerRe: Correlated sub query issue Pin
SomeGuyThatIsMe14-May-08 2:10
SomeGuyThatIsMe14-May-08 2:10 
GeneralRe: Correlated sub query issue Pin
AJ du Plessis14-May-08 2:43
AJ du Plessis14-May-08 2:43 
GeneralRe: Correlated sub query issue Pin
SomeGuyThatIsMe14-May-08 3:09
SomeGuyThatIsMe14-May-08 3:09 
AnswerRe: Correlated sub query issue Pin
Ashfield14-May-08 3:10
Ashfield14-May-08 3:10 
GeneralRe: Correlated sub query issue Pin
AJ du Plessis14-May-08 4:20
AJ du Plessis14-May-08 4:20 
GeneralRe: Correlated sub query issue Pin
Ashfield14-May-08 21:09
Ashfield14-May-08 21:09 
QuestionSMO get backup file to store on another pc Pin
JoZ CaVaLLo13-May-08 23:33
JoZ CaVaLLo13-May-08 23:33 
AnswerRe: SMO get backup file to store on another pc Pin
Mycroft Holmes14-May-08 20:24
professionalMycroft Holmes14-May-08 20:24 
GeneralRe: SMO get backup file to store on another pc Pin
JoZ CaVaLLo14-May-08 22:42
JoZ CaVaLLo14-May-08 22:42 
GeneralRe: SMO get backup file to store on another pc Pin
Mycroft Holmes14-May-08 22:53
professionalMycroft Holmes14-May-08 22:53 
QuestionAdding a out put parameter in parameter array for OracleHelper class Pin
shames(Sam)13-May-08 22:12
shames(Sam)13-May-08 22:12 
i am trying to add a out put parameter for parameter array like this

string SpName = "USP_SHIPPINGMETHOD";//store procedure name
OracleParameter[] param = {
new OracleParameter("STORESHIPPINGMETHODID",this.StoreShipId),
new OracleParameter("STOREID", this.StoreId),
new OracleParameter("PRICE",this.Price),
new OracleParameter("ONLINESHIPPINGMETHOD",this.OnLineShippingMethodID),
new OracleParameter("ACTIVE",this.Active),
new OracleParameter("PERCENT",this.percent),
new OracleParameter("SHIPPING_METHOD_NAME",this.ShippingMethodName),
new OracleParameter("METHOD_TYPE",this.MethodType),
new OracleParameter("CUSTOMCRITERIAID",this.CriteriaID),
new OracleParameter("QTY",this.Qty),
new OracleParameter("ADDITIONALCOST",this.AdditionalCost),
new OracleParameter("ADDITIONALQTY",this.AdditionalQty),
new OracleParameter("TEMPID",this.AdditionalQty).Direction=ParameterDirection.Output,

};
int r = OracleHelper.ExecuteNonQuery(connection, CommandType.StoredProcedure, SpName, param);
r = int.Parse(param["TEMPID"].Value.ToString());




Error Cannot implicitly convert type 'System.Data.ParameterDirection' to 'System.Data.OracleClient.OracleParameter' (For TempId);



thanks
sam Wink | ;)

Web Developer

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.