| Thread | Last Post | Replies |
|
| Transaction Activity...... | 02 Oct 2004 00:13 GMT | 4 |
I am using SQL Server 2000 and .Net Frame Work1.1. I have implemented the transaction based activity using the following syntax. gtrnSQLDB = gcnnSQLDB.BeginTransaction(IsolationLevel.ReadUncommitted)
|
| Are Close and Dispose on connection objects equivilent? | 01 Oct 2004 23:29 GMT | 9 |
I read there is no difference between calling Close vs. Dispose on Connection objects. Is this true?
|
| Will a connection opened in a using block automatically close before being disposed | 01 Oct 2004 23:26 GMT | 8 |
We are having problems where connections in a connection pool are being exausted. We are using the Microsoft Application Block SQL Helper class and are seeing the failure in the following method: public static int ExecuteNonQuery(string connectionString, CommandType
|
| correct way to get count of recs in a sqlsrv tbl? | 01 Oct 2004 23:00 GMT | 2 |
I have a table in a sql server db that contains thousands of records. So, I don't want to fill a dataset with thousands of records. But I would like to get the count of records in the table. One way I can think of would be
|
| SQL query things " I'll " is operator ll (?!) | 01 Oct 2004 22:44 GMT | 3 |
I have a basic selection query (SELECT * FROM Tbl WHERE [Code] LIKE val") that is throwing an OleException when 'val' is the string "It'll-be-ok" It thinks that I'm using operator || I guess.. I dunno. The exact error
|
| meaning of max pool size ? | 01 Oct 2004 22:02 GMT | 2 |
I'm having a hard time finding something explicit which indicates whether Max Pool Size is intended to mean 'maximum number of connections within a pool, where distinct connection strings means distinct pools' or 'maximum total number of connections which can be
|
| Execute Non Query Error | 01 Oct 2004 21:03 GMT | 8 |
I am having a problem with ExecuteNonQuery. I have this code: Try strsql = "Insert into [Action] values (" &
|
| SQL Server 7 and ADO.NET | 01 Oct 2004 20:43 GMT | 5 |
I am starting a .NET project and am wondering if anyone has experience with using ADO.NET to access a SQL Server 7/NT server. If so, were there any issues?
|
| Connection string | 01 Oct 2004 20:00 GMT | 3 |
Dim conn As New SqlConnection Dim comm As New SqlCommand conn.ConnectionString = "Data Source =(local);Initial Catalog=Olympia;Integrated Security=True;"
|
| DataBinding to a DataView -- only getting first row | 01 Oct 2004 18:19 GMT | 3 |
I'm creating my first "real" Windows Forms application. I'm having some difficulty binding a DataView to my custom control. I can do it just fine if I bind directly to the DataTable, and it behaves as I want. (Multiple controls on the screen, each one bound to a different row ...
|
| The Connection Is Dead - ODBC | 01 Oct 2004 17:54 GMT | 4 |
I am having a problem getting data from a MySQL database using an ODBC connection. The below code works 100% in a Windows Form but not in my ASP.Net Web Form. It returns the error "The Connection
|
| General Network Exception (SqlException) with typed dataset | 01 Oct 2004 16:01 GMT | 7 |
I've seen people have this issue before, but it has always been intermittent for folks. Mine isn't (some students do work, but several cause the exception every single time). What goes on is that I try to pull up data on a student, but when DbDataAdaptor.Fill is called, I get ...
|
| Untyped DataSet cast into Typed DataSet ? | 01 Oct 2004 15:35 GMT | 2 |
I have an untyped DataSet object and a typed DataSet class, by design the structures match, I want to cast!!! my untyped DataSet object into with my typed DataSet class. Can I do this, whitout having to manually copy the data
|
| Get the users's permisions for each table | 01 Oct 2004 14:49 GMT | 2 |
I have a protected Access Database (with different tables) and an user with different permisions for every table. How can I get the user's permisions for every table? Daniel
|
| Untyped DataSet cast into a Typed DataSet ? | 01 Oct 2004 14:46 GMT | 2 |
I have an untyped DataSet object and a typed DataSet class, by design the structures match, I want to cast!!! my untyped DataSet object into with my typed DataSet class. Can I do this, whitout having to manually copy the data
|