EDN Admin
Well-known member
Hi,<br/> I established a connection to the Primavera SDK (via ODBC). But after that when i try to set the project scope_level of a particular project to access all the global data associated with that particular project the following error pops up<br/>
ERROR http://forums.oracle.com/forums/ IM001 http://forums.oracle.com/forums/ Microsoft http://forums.oracle.com/forums/ ODBC Driver Manager Driver does not support this function
and this is the code snippet i used<br/> <br/> OdbcConnection OCN = new OdbcConnection();<br/> OCN.ConnectionString = "Dsn=Primavera P6 SDK;uid=admin;pwd=admin";<br/> OCN.Open();<br/> <br/> OdbcCommand com = new OdbcCommand();<br/> <br/> //Initialise command<br/> com.Connection = OCN;<br/> com.CommandText = "update PROJECT set scope_level = 7 where proj_id = 462;";<br/> com.ExecuteNonQuery();<br/> <br/> hope some one can provide me with a solution<br/> <br/> Thanks in advance..
View the full article
ERROR http://forums.oracle.com/forums/ IM001 http://forums.oracle.com/forums/ Microsoft http://forums.oracle.com/forums/ ODBC Driver Manager Driver does not support this function
and this is the code snippet i used<br/> <br/> OdbcConnection OCN = new OdbcConnection();<br/> OCN.ConnectionString = "Dsn=Primavera P6 SDK;uid=admin;pwd=admin";<br/> OCN.Open();<br/> <br/> OdbcCommand com = new OdbcCommand();<br/> <br/> //Initialise command<br/> com.Connection = OCN;<br/> com.CommandText = "update PROJECT set scope_level = 7 where proj_id = 462;";<br/> com.ExecuteNonQuery();<br/> <br/> hope some one can provide me with a solution<br/> <br/> Thanks in advance..
View the full article