| Thread | Last Post | Replies |
|
| I have two questions about the TableAdapter Configuration Wizard | 13 Dec 2006 17:33 GMT | 5 |
1. I have a table in the database (SQL Server) that I created an adapter for using Visual Studio 2005. It has select/insert/delete/update methods created, but not using stored procedures, because I check the option that says:
|
| SqlDataSource.FilteExpression "!=" does not work? | 13 Dec 2006 11:36 GMT | 1 |
I have a SQlDataSource that binds to a GridView. I am using a parameterized FilterExpression to filter the results. If i use MyField = '{0}' it works fine. But i need to do MyField != '{0}'. This breaks with an error: 'Cannot interpret token '!' at
|
| ms sql server 2005 not seen in server explorer - can't see any SQL Servers | 13 Dec 2006 01:03 GMT | 8 |
i had just posted the following: --------------------------------- i have ms sql server 2005 installed on my system (installed when i installed 2005) and it is running(i can see it is running as a service), but it does
|
| Typed Datasets with ComboBox | 12 Dec 2006 22:02 GMT | 1 |
I am sure this is going to be obvious, but I can't see it. I have a strong typed dataset called "Clients" with two columns: ClientName , ClientCode. I want to attach a ComboBox to this dataset. Here is the code:
|
| Delete a row from Excel via ADO.NET | 12 Dec 2006 19:42 GMT | 4 |
I have a ADO.NET - Connection to an Excel file. UPDATE and INSERT works fine. Now I want to DELETE lines, but it doesn't works (I get an error message "Deleting data in a linked table is not supported by this ISAM."). Microsoft says, that there is no way to to this
|
| There must be a better way than this (oledb connections and connection strings) | 12 Dec 2006 19:15 GMT | 8 |
I'm currently writing a windows-forms based application in C# using visual studio express. It interfaces with an Access Database backend and at the moment, I have a seperate connection for every function (such as a button click) that I use. This means that at the moment, my
|
| DataAdapter changes insert-command at Update | 12 Dec 2006 18:42 GMT | 3 |
I try to do the following thing: SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM test",new SqlConnection(this.ConnectionString)); adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
|
| Can't Run Application Outside of Development Folder | 12 Dec 2006 18:02 GMT | 2 |
I rewrote an existing VB6 app in .NET as a learning tool. Works good. The problem is, it won't run in any folder except the folder that it was build in. I get an unhanded exception error
|
| Problem with datareaders in transactions | 12 Dec 2006 13:59 GMT | 1 |
I am having problems using a datareaders within a transaction. I have attached a stripped down version of my code that exposes the problem. The problem occurs when I commit the transaction. I get an exception "There is already an open DataReader associated with this Command which
|
| System.AccessViolationException | 12 Dec 2006 07:49 GMT | 1 |
Why? please tell me if you know System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at System.Data.Common.UnsafeNativeMethods.IRowset.GetData(IntPtr
|
| Has anyone had any luck in creating a strongly typed dataset in visual basic 2005 express? | 11 Dec 2006 20:22 GMT | 1 |
I've seen this ASP.NET tutorial: "Creating a data access layer". It worked prefectly well in asp.net and vb.net 2005. Now, i want to do the same with VB 2005 Express Edition, but connected to an Oracle Database. Can this be done?
|
| Error: The transport failed to connect to the server | 11 Dec 2006 19:32 GMT | 4 |
I am attempting to send an email using ASP.NET 1.1's Mail.SmtpMail.Send() method. My code contains all of the following: Dim mailmsg As New Mail.MailMessage Mail.SmtpMail.SmtpServer =
|
| Differences between OleDB and IBM.Data DB2 connection | 11 Dec 2006 17:32 GMT | 1 |
Folks, What are the differences in terms of functionality and performance regarding connections to a DB2 database using the OleDB provider < IBMDA400.DataSource.1 > versus an ADO.NET or IBM provided class like <
|
| Moving (or Archive ) records to another database (access / Sql Server). best practice ? | 11 Dec 2006 08:26 GMT | 2 |
i'd like to know the best practice for a utility i want to include in my recent project. the requirements is like this, There is a database (access or SQL Server 2005) we use as back-end. now i do have some transaction table where i get 50-100+ records per
|
| DataColumn.DateTimeMode property - How to use it? | 11 Dec 2006 06:12 GMT | 2 |
Not so long ago I accidentally noticed this new DataColumn.DateTimeMode property. I thought myself: what a cool concept! Perhaps data bound controls can use this setting to automatically perform conversion to/from UTC time when
|