<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tags 'Oracle' and 'OracleCommand'</title><link>http://forums.asp.net/search/SearchResults.aspx?q=&amp;tag=Oracle%2cOracleCommand&amp;orTags=0&amp;o=DateDescending</link><description>Search results matching tags 'Oracle' and 'OracleCommand'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>regarding connection pooling in oracle for my .net application</title><link>http://forums.asp.net/thread/2351242.aspx</link><pubDate>Mon, 12 May 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2351242</guid><dc:creator>shivarlakrishna</dc:creator><description>&lt;p&gt;actually we are using microsoft entireprise library for connecting to sql server database which is giving good performance for my application.Here I had a problem for my new application where I am using Oracle database as back end.To increase the performance of my application which library I need to use.whether that library overcome the connection pooling problems of my application.wht r the connection classes and methods that library conatains,which of the classes and methods I have to use to get good perfomance my application.please give brief description about that library so that i can find out the methods and classes of that library easily.......&amp;nbsp;&lt;/p&gt;</description></item><item><title>Insert not inserting to Oracle db</title><link>http://forums.asp.net/thread/2316819.aspx</link><pubDate>Wed, 23 Apr 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2316819</guid><dc:creator>asp.newtome</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am just trying to learn ASP.NET but have run into a problem when attempting to insert data into my database.&lt;/p&gt;
&lt;p&gt;I am using Oracle 10g Express Edition, Visual Studio 2005 and the code is in C#.&lt;/p&gt;
&lt;p&gt;Here is the code&amp;nbsp;I am using to call the insert statement;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;pre class="coloredcode"&gt;        &lt;span class="kwd"&gt;string&lt;/span&gt; sql = &lt;span class="st"&gt;&amp;quot;INSERT INTO offices (office_number, city, address, tel_number) VALUES (45, &amp;#39;London&amp;#39;, &amp;#39;Tottenham&amp;#39;, &amp;#39;2342234234&amp;#39;);&amp;quot;&lt;/span&gt;;
        OracleCommand command = &lt;span class="kwd"&gt;new&lt;/span&gt; OracleCommand();

        &lt;span class="kwd"&gt;using&lt;/span&gt; (OracleConnection myConnection = &lt;span class="kwd"&gt;new&lt;/span&gt;
            OracleConnection(ConfigurationManager.ConnectionStrings[
            &lt;span class="st"&gt;&amp;quot;connectionString&amp;quot;&lt;/span&gt;].ConnectionString))
        {
            command.CommandText = sql;
            command.Connection = myConnection;

            &lt;span class="kwd"&gt;try&lt;/span&gt;
            {
                myConnection.Open();
                command.ExecuteNonQuery();
                myConnection.Close();

            }
            &lt;span class="kwd"&gt;catch&lt;/span&gt; (Exception ex)
            {
                 ...
            }
        }&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The connection string is;&lt;/p&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#800000" size="2"&gt;add&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt; &lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;name&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;ConnectionString&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt; &lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;connectionString&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;Data Source=XE;Persist Security Info=True;User ID=xxx;Password=xxx&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;font color="#ff0000"&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;providerName&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;System.Data.OracleClient&lt;/font&gt;&lt;font size="2"&gt;&amp;quot;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;/&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt; 
&lt;p&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#800000" size="2"&gt;connectionStrings&lt;font color="#0000ff"&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color="#800000"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#000000"&gt;I have created a function that retrieves data from the database OK which is displayed in a grid view, but when I run the insert nothing is inserted into the database.&amp;nbsp; I don&amp;#39;t get any errors and I&amp;#39;m confident that the connection to DB is OK as I have already been able to retrieve data as mentioned, I just dont know if there is something I am missing such as&amp;nbsp;a commit for example?&amp;nbsp; Have looked on the web and tried it a couple of different ways but still can&amp;#39;t find a solution.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Any help would be gratefully received.&lt;/p&gt;
&lt;p&gt;Regards&lt;font color="#0000ff" size="2"&gt;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: The database DLL 'crdb_oracle.dll' could not be loaded.</title><link>http://forums.asp.net/thread/2269033.aspx</link><pubDate>Tue, 01 Apr 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2269033</guid><dc:creator>Kellem00</dc:creator><description>&lt;p&gt;I had the same issue when upgrading a project from Asp.net 1.1&amp;nbsp;to Asp.net 2.0&lt;/p&gt;
&lt;p&gt;The report was built in crystal Reports XI however when I included it in my Asp.net 2.0 project I got this error.&lt;/p&gt;
&lt;p&gt;The solution for me was to reinstall crystal &lt;a href="http://support.businessobjects.com/downloads/service_packs/crystal_reports_en.asp"&gt;http://support.businessobjects.com/downloads/service_packs/crystal_reports_en.asp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I installed &lt;a href="http://support.businessobjects.com/downloads/service_packs/crystal_reports_en.asp#CRXIR2"&gt;Crystal Reports XI Release 2&lt;/a&gt;&amp;nbsp;and &lt;a href="http://support.businessobjects.com/downloads/service_packs/crystal_reports_en.asp#NET2005"&gt;Crystal Reports for Visual Studio .NET 2005&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When installing &lt;a href="http://support.businessobjects.com/downloads/service_packs/crystal_reports_en.asp#CRXIR2"&gt;Crystal Reports XI Release 2&lt;/a&gt;&amp;nbsp;I did a custom install. In this custom install I selected anything that related to oracle.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not 100% sure why I needed to do all this but all I know is that the project ran in Visual Studio 2005 after I had completed this. &lt;/p&gt;
&lt;p&gt;Hope this helps anyone who might be unfortunate enough to be getting this error&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Oracle  Database,enter recored into tables using single query</title><link>http://forums.asp.net/thread/2177143.aspx</link><pubDate>Fri, 15 Feb 2008 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2177143</guid><dc:creator>ranvirthakor</dc:creator><description>&lt;p&gt;Hi I am having one query that i want to insert datas into multiple tables at a time using only one single query in Oracle.so can any body help me to to the same ?&lt;/p&gt;</description></item><item><title>passing exception result</title><link>http://forums.asp.net/thread/2057534.aspx</link><pubDate>Thu, 13 Dec 2007 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2057534</guid><dc:creator>nomercy007</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have stored procedure in ORACLE that inserts record in a table that has a unique-key constraint on 3 columns.&lt;/p&gt;&lt;p&gt;I managed to handle the exception correctly in the stored procedure.&lt;/p&gt;&lt;p&gt;My problem is at the data access layer (I use enterprise library with executenonquery() ) the number of affected rows returned is alway 1 even when the constraint violated and exception catched in the procedure.&lt;/p&gt;</description></item><item><title>Re: How to return result from Oracle stored procedure.</title><link>http://forums.asp.net/thread/1793748.aspx</link><pubDate>Mon, 09 Jul 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1793748</guid><dc:creator>Ashutosh Bhardwaj</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you for your reply. I had been using this approach for quiet some time now but there is a question which is striking in my mind:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How is the ref cursor clsoed? Is it being handled automatically or do we have to write any code to close the cursor explicitly.&lt;/p&gt;
&lt;p&gt;Please let me know your comments on this.&lt;/p&gt;</description></item><item><title>Character mismatch exception while using &amp;quot;SQLDataSource&amp;quot;  for &amp;quot;GridView&amp;quot; updating Oracle Data Base </title><link>http://forums.asp.net/thread/1769032.aspx</link><pubDate>Sat, 23 Jun 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1769032</guid><dc:creator>avais2006</dc:creator><description>&lt;p&gt;i creat connection easlly and fatch data from oracle and delete also easlly uisng &amp;quot;SQLDataSource&amp;quot; for &amp;quot;GridView&amp;quot;&amp;nbsp;&amp;nbsp;accessing Oracle Data Base but when i wish to do &amp;quot;UpDate&amp;quot; it give me the execption &amp;quot;System.Data.OracleClient.Oracle Exception:ORA-12704:Character Set MisMatch&amp;quot; and application crashed&lt;/p&gt;
&lt;p&gt;Please if any one know how to solve&lt;/p&gt;</description></item><item><title>Re: OracleTable to C# Class</title><link>http://forums.asp.net/thread/1752824.aspx</link><pubDate>Wed, 13 Jun 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1752824</guid><dc:creator>opethema</dc:creator><description>&lt;p&gt;i have developed this tool myself!&lt;/p&gt;&lt;p&gt;thanks for no help.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Problem while inserting character &amp;#214; using ODP.Net into oracle </title><link>http://forums.asp.net/thread/1747886.aspx</link><pubDate>Sun, 10 Jun 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1747886</guid><dc:creator>Pankaj Deshnmukh</dc:creator><description>&lt;p&gt;Hi&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I am facing problem while inserting string &amp;#39;CH-FERBÖX_A_&amp;#39;. The character &amp;#39;Ö&amp;#39; is getting converted into &amp;#39;O&amp;#39; after insertion.The string is being &amp;nbsp;converted into &amp;#39;&amp;nbsp;CH-FERBOX_A_&amp;#39; after insertion.When I fire same insert statment&amp;nbsp;using &amp;nbsp;sql plus ,&amp;nbsp;replacement of character from&amp;nbsp; &amp;#39;Ö&amp;#39; to &amp;#39;O&amp;#39; did not happen.I am using ASP.Net 1.1.&lt;/p&gt;
&lt;p&gt;Actual String&amp;nbsp; : &amp;#39;CH-FERBÖX_A_&amp;#39;&lt;/p&gt;
&lt;p&gt;Value in DB : &amp;#39;&amp;nbsp;CH-FERBOX_A_&amp;#39; after insertion&lt;/p&gt;
&lt;p&gt;does anyone know how to get around this problem ? &lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Help me pls. i wan't code startup and shutdown oracle database with vb.net.</title><link>http://forums.asp.net/thread/1733932.aspx</link><pubDate>Thu, 31 May 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1733932</guid><dc:creator>pinkbuff</dc:creator><description>&lt;p&gt;Help me pls. i wan&amp;#39;t code startup and shutdown oracle database with vb.net.&lt;/p&gt;</description></item></channel></rss>