active questions tagged ado.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:36:52Z http://stackoverflow.com/feeds/tag/ado.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808036/is-sqlcommand-dispose-required-if-associated-sqlconnection-will-be-disposed 0 Is SqlCommand.Dispose() required if associated SqlConnection will be disposed? abatishchev 2009-11-27T10:47:21Z 2009-11-27T10:51:39Z <p>I usually use code like this:</p> <pre><code>using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString)) { var command = connection.CreateCommand(); command.CommandText = "..."; connection.Open(); command.ExecuteNonQuery(); } </code></pre> <p>Will my <code>command</code> automatically disposed? Or not and I have to wrap it into <code>using</code> block? Is it required to dispose <code>SqlCommand</code>?</p> http://stackoverflow.com/questions/1807628/execution-of-store-procedure-taking-lot-of-time-in-asp-net 0 execution of Store procedure taking lot of time in asp.net Ripal Patel 2009-11-27T09:21:18Z 2009-11-27T09:21:18Z <p>If i execute sp from query analyser then it take only max 4-5 sec. but same sp if i execute from asp.net ,using ado.net , using following code, it take 15-20 minutes.</p> <p>da.fill(ds);</p> <p>above statement takes 15-20 minutes. My sp return only max 15 records.</p> <p>Please tell me what to do?</p> http://stackoverflow.com/questions/1753946/using-threadpool-threads-with-long-running-ado-net-queries-is-this-scalable 0 Using ThreadPool threads with long running ADO.NET queries. Is this scalable? spooner 2009-11-18T05:59:21Z 2009-11-27T08:10:21Z <p>We are currently enhancing an ASP.NET app that performs quotes on a number of products.</p> <p>At present the existing quote engine is basically a big stored procedure (2-3 secs per call) followed by a small amount of business logic that runs after the procedure call.</p> <p>We are looking into multi-threading the call to each product in order to speed up a set of quotes. </p> <p>Our current approach is to encapsulate each product quote work in a ThreadPool thread. This seems to perform much better, but I'm a little concerned that though it's performing well with a small number of users, will it scale well in a production environment?</p> <p>Please note at present we are not using async ADO.NET methods.</p> <p>Note: Our code that calls the ThreadPool has a throttle that queues requests so we can only use a configurable amount of threads from the ThreadPool at one time. We also don't need to wait for the quote results on the same page, we allow the user to progress and check for updates (a quote results page uses AJAX to check for results).</p> <p>Further note: The preferred solution would be to use a message queue as the quote service is a one-way operation. However, the timescales for the project didn't provide us time to do this.</p> <p>In the meantime we are going to revise the implementation to use the async methods of ADO.NET (as that is where all the long running aspect of the process is) saving the need to use ThreadPool threads.</p> http://stackoverflow.com/questions/1781679/devarts-dotconnect-for-oracle-vs-datadirects-ado-net-data-provider 1 DevArt's dotConnect for Oracle vs DataDirect's ADO.NET data provider CVD 2009-11-23T07:54:14Z 2009-11-26T15:46:06Z <p>Has anybody done a comparative analysis of dotConnect for Oracle from DevArt and the <a href="http://www.datadirect.com/products/net/net%5Ffor%5Foracle/index.ssp" rel="nofollow">ADO.NET data provider from DataDirect</a>.</p> <p>We are thinking of using the Entity Framework support available in these frameworks for a critical enterprise application. Some articles that I read suggest the following:</p> <ol> <li>DevArt dotConnect is much faster as compared to DataDirect</li> <li>DataDirect license is more expensive that the DevArt license</li> </ol> <p><strong>Can anybody throw more light on the technical aspects so as to aid the decision making process?</strong></p> http://stackoverflow.com/questions/1114756/sql-server-2008-import-schema-and-data-from-ado-net-provider 0 SQL Server 2008 import schema and data from ADO.NET Provider? Jason Short 2009-07-11T22:01:19Z 2009-11-26T00:04:33Z <p>I am trying to figure how to get SQL Server 2008 to import data using the schema from an ADO.NET Provider. You can use the Database Import wizard and choose any ADO.NET Provider (I am using VistaDB in this case). But once you go to the actual import the Copy Data from one or more tables is grayed out. You can only write queries. I want to copy the entire database schema and data.</p> <p>I found references in the online help that only Microsoft providers can use this by default and that you have to build a custom descriptor for third parties. The help then points to :\Program Files\Microsoft SQL Server\100\DTS\ProviderDescriptors for the directory to look. Looking through the XML file is looks like it wants SQL queries for all the schema and definition loads. Why can't it load them through the GetSchema() call that all ADO.NET Providers have to implement? That doesn't make any sense to me.</p> <p>Then I found that you can get all the schema in a DTS package in SQL Server from any ADO.NET Provider. The last DTS package I wrote was about 10 years ago. Looking at the 2008 version I am totally lost. How do you get a DTS package to load the entire database schema and import it in SQL Server today?</p> <p>Or, am I over thinking this and there is an easier way to do it?</p> http://stackoverflow.com/questions/1798156/how-to-keep-an-audit-history-of-changes-to-the-table 1 How to keep an audit/history of changes to the table ewall 2009-11-25T16:27:38Z 2009-11-25T23:25:37Z <p>I've been asked to create a simple DataGrid-style application to edit a single table of a database, and that's easy enough. But part of the request is to create an audit trail of changes made, who made them, and the date/time.</p> <p>How might you solve this kind of thing?</p> <p>(I'll be using C# in VS2008, ADO.NET connected to SQL Server 2005, WPF and Xceed's DataGrid, if it makes any difference.)</p> http://stackoverflow.com/questions/1800174/how-do-i-stop-the-the-database-file-is-locked-exception 0 How do i stop the The database file is locked exception? acidzombie24 2009-11-25T21:43:35Z 2009-11-25T22:21:58Z <p>I have a multithreaded app that uses sqlite. When two threads try to update the db at once i get the exception</p> <pre><code>Additional information: The database file is locked </code></pre> <p>I <em>thought</em> it would retry in a few milliseconds. My querys arent complex. The most complex one (which happens frequently) is update, select, run trivial code update/delete, commit. Why does it throw the exception? How can i make it retry a few times before throwing an exception?</p> http://stackoverflow.com/questions/1785768/how-do-i-use-an-ado-net-managed-provider-in-excel 0 How do I use an ADO.NET managed provider in Excel? Eli 2009-11-23T20:35:23Z 2009-11-25T20:40:55Z <p>I have an ADO.NET Managed Data Provider that is registered in machine.config in DbProviderFactory - It is available for use from, say, Analysis Services, so I know it is correctly registered.</p> <p>However, I need to be able to query the managed provider from Excel, but the managed provider doesn't appear as a choice from Data Link Properties | All Ole Db Providers.</p> <p>How do I get an ADO.NET Managed Data Provider to appear there, or is there another technique I need to use?</p> <p>Thanks in advance, Eli.</p> http://stackoverflow.com/questions/1797192/how-to-manage-multiple-ado-net-database-connections-from-asmx-web-service 1 how to manage multiple ado.net database connections from asmx Web Service matti 2009-11-25T14:19:15Z 2009-11-25T19:15:28Z <p>Since IIS assigns a worker thread for each request I've intention to create new object to serve each request. I have 2 questions:</p> <ol> <li><p>Is it efficient to create new object to serve each request? (is there even alternatice?)</p></li> <li><p>Is it thread safe, efficient and best practice to create new connection, and open&amp;close it for each request like below:</p></li> </ol> <pre> using (MySqlConnection conn = new MySqlConnection(ConfigurationManager.ConnectionStrings["MySqlConnectionString"].ConnectionString)) { conn.Open(); MySqlCommand cmd = new MySqlCommand("SELECT password FROM Admin WHERE username='" + username + "'", conn); object dbp = cmd.ExecuteScalar(); conn.Close(); } </pre> <p>PS. this example is taken from this site. I use oracle db.</p> <p>Thanks: Matti</p> http://stackoverflow.com/questions/1797223/diagnosing-winforms-databinding-problem 1 Diagnosing WinForms Databinding problem randy 2009-11-25T14:25:24Z 2009-11-25T15:11:40Z <p>I'm learning Databinding from here <a href="http://www.akadia.com/services/dotnet%5Fdatabinding.html" rel="nofollow">http://www.akadia.com/services/dotnet_databinding.html</a></p> <p>I'm just updating the dataset and then updating the sql database using sqlDataAdaper.Update(); </p> <pre><code> this.selectCommand = new SqlCommand(); this.selectCommand.CommandType = CommandType.Text; this.selectCommand.Connection = this.connection; this.dataAdapter = new SqlDataAdapter(this.selectCommand); this.dataAdapter.MissingSchemaAction = System.Data.MissingSchemaAction.AddWithKey; this.commandBuilder = new SqlCommandBuilder(this.dataAdapter); this.selectCommand.CommandText = "Select `FirstName`,`lastname` from customers where customerId=123"; this.dataAdapter.Fill(this.dataSet, "customers"); </code></pre> <p>now binding as:</p> <pre><code>// Simple Data Binding txtBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet, "Customers.FirstName", true)); </code></pre> <p>Its showing the firstname and when I change the first name and hit save button following code runs:</p> <pre><code> this.dataAdapter.Update(this.dataSet, "customers"); </code></pre> <p>changed value is not reflected in the dataset and thus not in the database too. I don't understand why?</p> <p>When will the BindingContext push the value that I changed in Textbox (GUI) into the dataset? Am I missing anything?</p> http://stackoverflow.com/questions/1796920/can-dbparameter-instance-of-same-name-and-type-be-shared-with-multiple-dbcommand 0 Can DbParameter instance of same name and type be shared with multiple DbCommand instances? Rohit 2009-11-25T13:30:45Z 2009-11-25T13:47:54Z <p>Is it efficient or possible to share same DbParameter object with multiple commands?</p> http://stackoverflow.com/questions/1796094/implementing-the-gridview-paging-with-database 0 Implementing the gridview paging with database Srinivas Reddy Thatiparthy 2009-11-25T10:43:50Z 2009-11-25T10:49:26Z <p>I am binding dataset to a gridview,Which has 1000 records in it.As you know sending this entire dataset across a wire is costly. In the gridview i use paging which is set to 20 records per page. Since sending entire dataset is costly ,so i want to send 20 records at a time. How can i implement this? Is there any changes i need to do in the stored procedure? Anybody suggest me the pros and cons of this approach? Any pointers and resources are most welcome. TIA.</p> http://stackoverflow.com/questions/1794496/viewing-dataset-contents-without-using-dataset-visualizer 1 Viewing dataset contents without using dataset visualizer Zannjaminderson 2009-11-25T03:52:25Z 2009-11-25T03:58:46Z <p>In writing some tests for a project I'm working on, I found that the best way for me to get the data back I needed about whether the project was correct was to put results into an ADO.NET DataTable. I got sick of setting breakpoints and waiting for them to be hit so that I could use the DataSet Visualizer to see what my results were, and I wanted to be able to see the results after the test was finished, so I decided to find a quick and dirty way to write the DataTable to a file.<p>After poking around in Intellisense to try and find a good way to get my DataTable out to a file, I googled a bit and found somebody who had written some code to write a DataTable out to a table in an html file. I spent a few minutes and implemented my own version of this and went on my merry way. I like the html solution because it was super easy to implement, it's totally portable, and it's easy to refresh the page and see the latest test results after making changes to my code.<p>At this point I'm wondering, however, did I miss an easier/better way of doing this? Keep in mind, the requirements are to be able to visualize the table in actual table form, not serialized as XML or any other less readable format, and it needs to be in a file on the hard drive so that I can come back to it. Any ideas?</p> http://stackoverflow.com/questions/1382909/derived-fields-in-ado-net-entity-framework 0 Derived fields in ado.net entity framework mglmnc 2009-09-05T09:52:44Z 2009-11-25T02:00:04Z <p>I have a persistent class that looks like this:</p> <pre> public partial class Unit { public string Name { get; set; } public long LengthInMM { get; set; } public decimal VolumeCoefficient { get { return LengthInMM * LengthInMM * LengthInMM; } } } </pre> <p>Now the derived field (VolumeCoefficient) never gets explicitly assigned. How do I save it in ADO.NET entity framework?</p> <p>I thought of subclassing the Unit class and overriding the getters and setters but that seems too messy.</p> http://stackoverflow.com/questions/22879/how-do-you-prevent-leading-zeros-from-being-stripped-when-importing-an-excel-doc 3 How do you prevent leading zeros from being stripped when importing an excel doc using c# TheImirOfGroofunkistan 2008-08-22T17:02:14Z 2009-11-24T19:43:01Z <p>I'm able to connect to and read an excel file no problem. But when importing data such as zipcodes that have leading zeros, how do you prevent excel from guessing the datatype and in the process stripping out leading zeros?</p> http://stackoverflow.com/questions/1576067/entity-framework-objectcontext-raw-sql-calls-to-native-dbms 0 Entity Framework ObjectContext -> raw SQL calls to native DBMS Justin Grant 2009-10-16T01:50:50Z 2009-11-24T14:43:13Z <p>I have an app using the ADO.NET entity framework (the VS2008 version, not the newer, cooler one) and I need to be able to make a call down to the underlying DBMS (it's postgres) in order to call some SQL that Entity Framework doesn't support. </p> <p>Is there a way to go from an Entity Framework ObjectContext to something that will let me execute raw SQL? (I need to run a TRUNCATE TABLE before inserting) I'm OK with a hacky solution (e.g. pull out the DBMS's connection string info from EF, and use that to create a connection using the postgres ADO.NET provider) but don't want to manage two sets of connection strings (one for entity framework, one for ADO.NET).</p> <p>I'm aware of the limitatons of Entity Framework's first version, but it's not worth the investment required to switch this app to another ORM, and using EF 4.0 isn't an option either.</p> <p>Any ideas?</p> <p>BTW, this is the same question as <a href="http://stackoverflow.com/questions/915329/is-it-possible-to-run-native-sql-with-entity-framework">http://stackoverflow.com/questions/915329/is-it-possible-to-run-native-sql-with-entity-framework</a>, but the workaround described in that answer won't work for me since I really do need to execute raw SQL.</p> http://stackoverflow.com/questions/1727369/how-do-i-update-a-single-table-of-a-dataset-using-a-tableadapter-without-hard-co 2 How do I update a single table of a DataSet using a TableAdapter, without hard-coding the table name? Billious 2009-11-13T05:48:50Z 2009-11-24T13:49:20Z <p>This seems like a really basic thing that I'm doing, yet I'm tearing my hair out trying to make it work. </p> <p>My situation is this: I have a project which contains a large number of lookup tables, and I have all of these lookup tables represented in a single typed DataSet, which contains TableAdapters for each lookup. I've designed an editor for these lookup tables, which should allow editing of one of these at a time. My front-end is written in VB and WinForms, the back-end is a SOAP web service; I can successfully pass the changes to the DataSet back to the web service, but can't find a way to use a TableAdapter to update the single table that has been changed.</p> <p>What I'm trying to do is instantiate the appropriate TableAdapter for the updated DataTable by sending the name of the table back to the web service along with the DataSet, then referring to the TableAdapter with a dynamic name. The normal way to instantiate a TableAdapter is this:</p> <pre><code>Dim ta As New dsLookupsTableAdapters.tlkpMyTableTableAdapter </code></pre> <p>What I'd like to do is this, but of course it doesn't work:</p> <pre><code>strTableName = "tlkpMyTable" Dim ta As New dsLookupsTableAdapters(strTableName &amp; "TableAdapter") </code></pre> <p>Is there any way to achieve this, or am I taking the wrong approach altogether? My other alternative is to write separate code for each table, which I'd prefer to avoid!</p> http://stackoverflow.com/questions/1789153/pairing-email-transactions-and-ado-net-transactions 0 Pairing Email Transactions and ADO.NET Transactions Micheal Hardy 2009-11-24T10:20:25Z 2009-11-24T10:53:22Z <p>Is it possible to automatically link the sending of an email (using SMTPClient) in C# with an ADO.net transaction?</p> <p>So given the scenario of the sending of an email failing, the ADO.NET transaction will also fail and be automatically rolled back?</p> <p>Cheers</p> http://stackoverflow.com/questions/1788648/how-to-try-execute-repeatly-if-command-executenonquery-fails 0 how to try execute repeatly if command.ExecuteNonQuery() fails loviji 2009-11-24T08:26:58Z 2009-11-24T08:35:26Z <p>how to try execute repeatly if command.ExecuteNonQuery() fails?</p> http://stackoverflow.com/questions/1786367/linq-to-sql-ammend-command-before-submission-to-database 1 Linq to SQL: Ammend command before submission to database Martin Robins 2009-11-23T22:04:07Z 2009-11-24T03:22:12Z <p>Is there a hook somewhere within Linq to SQL that would allow me to manually modify a command before it is sent to the database?</p> <p>Specifically, I am trying to introduce the <a href="http://msdn.microsoft.com/en-us/library/bb895330.aspx" rel="nofollow"><code>WITH CHANGE_TRACKING_CONTEXT(@contextData)</code></a> syntax whenever an insert/update/delete is applied to the database in order to be able to add additional information against the change tracking, such as the user who instigated the change (this is a web application that uses SQL Authentication).</p> <p>This syntax will simply need to be inserted at the beginning of the CommandText, along with an additional parameter <code>(@contextData)</code> being added to the SqlCommand object which will contain the data for the additional statement. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1786591/using-ado-net-transactions-within-a-transactionscope 0 Using ADO.Net transactions within a TransactionScope? larryq 2009-11-23T22:45:25Z 2009-11-23T22:50:48Z <p>Hi everyone,</p> <p>I've been reading about TransactionScope and had a question about its interoperability with ADO.Net transactions. Right now we have some data access methods that each call a stored proc and begin and commit their own individual transactions. Straighforward, boilerplate stuff, the methods look like this:</p> <pre><code>sqlCommand = //create SQLCommand with Stored proc SqlTransaction myTransaction = myConnection.BeginTransaction(); sqlCommand.Transaction = sqlTransaction; sqlCommand.Execute(); sqlTransaction.Commit(); </code></pre> <p>I've simplified things a bit, but you get the idea.</p> <p>I now need to call two of these class methods consecutively and commit or roll them back as a team from my business layer. I can't modify the data methods, so I was thinking of putting the two calls in a TransactionScope block. </p> <p>If I do this, what sort of parameters should I use when creating the TransactionScope? I've already tried this using the TransactionScopeOption.RequiresNew option and things seem to work, but that's just me experimenting and I'm not sure if it's the way to go. (I'll note here that these are SQL transactions exclusively, running on the same SQL server.) </p> <p>I see that TransactionScope has constructor options to deal with COM+ transactions. Because I'm using ADO.Net transactions, is that relevant here? Thanks for the advice.</p> http://stackoverflow.com/questions/1784880/how-do-i-natively-translate-sqltype-to-underlying-sql-type-declaration 1 How do I natively translate SqlType to underlying SQL type declaration? galets 2009-11-23T18:00:00Z 2009-11-23T20:35:44Z <p>Is there a way in .NET SqlClient to translate SqlType to actual SQL type declaration, like</p> <pre><code>SqlInt32 -&gt; "int" SqlGuid -&gt; "uniqueidentifier" SqlXml -&gt; "xml" SqlString -&gt; "nvarchar(??)" </code></pre> <p>without doing it manually?</p> <p>CLARIFICATION: I am trying to automatically refactor a number of SQL select statements, and I need to know what types do they return. I'm planning to do it by running following code: </p> <pre><code>using (var connection = new SqlConnection(SqlConnectionString)) { connection.Open(); var command = connection.CreateCommand(); command.CommandText = sql; var reader = command.ExecuteReader(CommandBehavior.SchemaOnly); for (int i = 0; i &lt; reader.FieldCount; ++i) { var type = reader.GetProviderSpecificFieldType(i); ... generate some sql code ... } } </code></pre> <p>So, once I got the type, I'm trying to generate some SQL code and use SqlTye returned in GetProviderSpecificFieldType, and I wanted to see if there's already a function I can use that will take SqlType and give me back the SQL declaration</p> http://stackoverflow.com/questions/1784045/connection-pooling-and-multiple-connection-strings 0 Connection Pooling and Multiple Connection Strings troylar 2009-11-23T15:55:18Z 2009-11-23T16:00:28Z <p>An ASP.NET 3.5 application has two connection strings:</p> <pre><code>Data Source=RedDB;Initial Catalog=Red;User Id=myuser;Password=pas;Max Pool Size=50;Min Pool Size=1 Data Source=BlueDB;Initial Catalog=Blue; User Id=myuser;Password=pas;Max Pool Size=375;Min Pool Size=2 </code></pre> <p>Suppose the RedDB connection has a stored procedure that is hanging indefinitely due to a bad index. </p> <ol> <li><p>If the application does not close the RedDB connection properly (viz., with a try/finally block), how quickly do the pool connections get recycled as users are hitting the site?</p></li> <li><p>If the RedDB connection pool is maxed out because of users getting the SQL timeout, does that have ANY impact on the BlueDB, or is that a completely isolated connection pool?</p></li> </ol> http://stackoverflow.com/questions/584816/what-are-the-known-limitations-of-ado-net-entity-framework-designer 3 What are the known limitations of ADO.NET entity framework designer? amazedsaint 2009-02-25T05:32:53Z 2009-11-23T13:40:23Z <p>We just found an issue like, when a foreign key relationship is broken, there is no way to re-establish the link in the designer.</p> <p>Any other such known limitations of Entity Framework designer?</p> http://stackoverflow.com/questions/1782427/vb-net-ado-net-update 0 vb.net ado.net update unknown (yahoo) 2009-11-23T11:03:01Z 2009-11-23T11:04:18Z <p>How can i add and update new row into sql server through vb.net? The foll code is generating error on update statement.</p> <pre><code> Dim cb As New OleDb.OleDbCommandBuilder(da) Dim sql As String sql = "SELECT * from resumemaster" connect(sql, "resumemaster") Dim dsrow As DataRow dsrow = ds.Tables("resumemaster").NewRow For Each ctl2 As Control In Me.GroupBox2.Controls If TypeOf ctl2 Is TextBox Then If ctl2.Name = "txtobjective" Then dsrow.Item("Objective") = ctl2.Text ds.Tables("resumemaster").Rows.Add(dsrow) da.Update(ds, "resumemaster") End If End If Next </code></pre> http://stackoverflow.com/questions/1781919/why-i-cant-use-two-datareader-in-one-procedure 0 why I can't use two datareader in one procedure? RedsDevils 2009-11-23T09:10:44Z 2009-11-23T09:18:33Z <p>Hi everyone, can you explain me why I can't use two datareader in on procedure?</p> <p>Here is the sample code:</p> <pre><code>Private Sub Do_Execute() Dim conx as SqlConnection Dim cmd1 as SqlCommand Dim cmd2 as SqlCommand Dim drd1 as SqlDataReader Dim drd2 as SqlDataReader conx = new SqlConnection("connection string") conx.Open() cmd1 = new SqlCommand("SELECT * FROM Category" , conx) drd1 = cmd1.ExecuteReader() While (drd1.Read()) { Reading Data From drd1 } cmd2 = new SqlCommand("SELECT * FROM Stock" , conx) drd2 = cmd2.ExecuteReader() While (drd2.Read()) { Reading Data From drd2 } End Sub </code></pre> <p>When I execute that program, It throws to the exception message : " There is already an open DataReader associates with this Command which must be closed first! "</p> <p>When I closed drd1 before drd2 is initialized. It works. </p> <p>Why I can't use like above code? Please explain me. Thanks in advance! </p> http://stackoverflow.com/questions/1744191/comparison-of-3rd-party-oracle-net-providers 3 Comparison of 3rd Party Oracle .NET Providers Mike Hofer 2009-11-16T19:09:32Z 2009-11-23T01:04:03Z <p>I'm in the process of cleaning up an Oracle database application. In this application, performance and ease of access are paramount concerns. It has to get out of your way and let you get to the data in a free and uninhibited way. While doing that, it has to be <em>very</em> fast. When it can't be fast, it has to be multi-threaded so that it doesn't freeze up the system.</p> <p>All of that out of the way, here's what I've learned. Microsoft has deprecated the System.Data.OracleClient namespace. It'll be around in .NET 4.0, but it'll be marked with ObsoleteAttribute. I've currently swapped it out for ODP.NET from Oracle (which turned out to be surprisingly painless), but in reviewing other comments, I realized that I was still failing to meet a few design goals:</p> <ol> <li><p>I might not be using the fastest provider out there. </p></li> <li><p>I still can't seem to provide access to the SYSOPER account. I haven't quite worked out why, yet. That could be a coding issue, but I'm stumped.</p></li> </ol> <p>So here's my question for you guys.</p> <p><strong>What are the 3rd party alternatives to System.Data.OracleClient <em>that you've used</em>, and what are their pros and cons?</strong> </p> http://stackoverflow.com/questions/1779355/why-does-objectdatasource-databind-return-rows-while-objectdatasource-select 0 Why does ObjectDataSource.DataBind() return rows, while ObjectDataSource.Select() doesn't? carewithl 2009-11-22T17:32:22Z 2009-11-22T20:21:31Z <p>Hi</p> <p>I thought calling ObjectDataSource.Select() gives the same results as calling ObjectDataSource.DataBind(), but in some cases that doesn’t seem to be true: </p> <p><br> </p> <pre><code>&lt;asp:ObjectDataSource ID="ODS1" TypeName="PersonDB" SelectMethod="GetPeople" runat="server"&gt;&lt;/asp:ObjectDataSource&gt; &lt;br&gt; &lt;asp:ListBox ID="ListBox1" DataSourceID="ODS1" DataTextField="PersonID" AutoPostBack="true" runat="server"&gt;&lt;/asp:ListBox&gt; &lt;br&gt; &lt;asp:ObjectDataSource ID="ODS2" InsertMethod="InsertEmployee" TypeName="PersonDB" SelectMethod="GetPerson" runat="server"&gt; &lt;SelectParameters&gt; &lt;asp:ControlParameter ConvertEmptyStringToNull="True" Name="PersonID" PropertyName="SelectedValue" ControlID="ListBox1" /&gt; &lt;/SelectParameters&gt; &lt;/asp:ObjectDataSource&gt; &lt;br&gt; &lt;asp:DetailsView ID="DetailsView1" AutoGenerateInsertButton="true" DataSourceID="ODS2" runat="server"&gt; &lt;/asp:DetailsView&gt; protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ODS1.Select(); //same as calling ODS1.DataBind(); } if (IsPostBack) { ODS2.Select(); // returns no results } } </code></pre> <p><br></p> <p>In the above code calling ODS1.Select() produces the same results as calling ODS1.DataBind(). But if on postback user selects an item in ListBox, ODS2.Select() still doesn’t return any results, but if we replace <em>ODS2.Select();</em> with <em>ODS2.DataBind();</em> then a row is returned. So why doesn’t <em>ODS2.Select();</em> return any results, but <em>ODS2.DataBind();</em> does?</p> <p><br></p> <p>thank you</p> <p><br></p> <p><strong>EDIT:</strong></p> <p><br></p> <p>Assuming user select an item in a Listbox --> It seems that when we call ODS2.Select(), ODS2 for some reason can't bind to ListBox1.SelectedValue and extract a value from this property</p> http://stackoverflow.com/questions/1190809/how-do-i-run-my-sql-script-file-through-ado-net 0 How do I run my .sql script file through ADO.NET? Muhammad Adnan 2009-07-27T21:42:59Z 2009-11-21T16:09:18Z <p>I want to run my .sql script file using my <a href="http://en.wikipedia.org/wiki/ASP.NET" rel="nofollow">ASP.NET</a> website through <a href="http://en.wikipedia.org/wiki/ADO.NET" rel="nofollow">ADO.NET</a>. How it could be it is not working?</p> <p>When I try</p> <pre><code> 'dbScript is a string and contains contents of the .sql file. Dim cmd As New SqlCommand(dbScript, con) Try con.Open() cmd.ExecuteNonQuery() Catch ex As Exception Finally con.Close() cmd.Dispose() End Try </code></pre> <p>I get exceptions when GO statement executed of .sql. How can I fix this problem?</p> http://stackoverflow.com/questions/1347661/custom-authorization-in-ado-net-data-services 1 Custom authorization in ADO.NET Data Services Andrei Rinea 2009-08-28T15:15:54Z 2009-11-21T15:25:18Z <p>I have an ADO.NET Data Service that exposes an Entity Framework data model (.edmx).</p> <p>I need to allow / reject reads/writes to certain entities for certain users. I use Windows Authentication. All I could find is overriding the OnStartProcessingRequest :</p> <pre><code>protected override void OnStartProcessingRequest(ProcessRequestArgs args) { base.OnStartProcessingRequest(args); bool isBatch = args.IsBatchOperation; System.Uri requestUri = args.RequestUri; // parse uri and determine the entity and the operation // (i.e.: select/update/delete/insert) will be determined by the HTTP verb } </code></pre> <p>However I think this sucks and I am hoping for a better solution... Any ideas? :(</p>