| Thread | Last Post | Replies |
|
| TypedDataset | 25 May 2005 17:32 GMT | 4 |
I have a typed dataset as follows,which as you can see **Dose have a primary key**.In the application when I try to use the Find mentod on it it says that the table dosen't have the primary key,so I traced from the begining of object creation and I noticed when I instanciate an ...
|
| Insert using C# | 25 May 2005 17:31 GMT | 11 |
When I try to insert the second record I get the message "The Variable name "@Parm1" has already been declared. What can I do to prevent this. The code: try {
|
| good data-driven place to store default values? | 25 May 2005 16:24 GMT | 5 |
so i have a database schema, a .NET object library .dll, and an ASP classic web application. i'm wondering where in this setup i should place default values for fields/columns of forms/objects/rows.
|
| Oracle Client Components | 25 May 2005 15:51 GMT | 1 |
Is there a way to connect to oracle 9i database from c# WITHOUT installing the Oracle Client Components on my machine? Thanks Arlef
|
| Reading Data From Excel Via ADO.NET | 25 May 2005 15:48 GMT | 2 |
I have an application reading data from an Excel file and filling a SQL Server table. When I read the Excel file, I want to be able to trim trailing spaces off the data as it's read into the dataset. I'm connecting to the Excel file via an OleDbDataAdapter & OleDbCommand object ...
|
| ADO.NET - Excel and Column header.. | 25 May 2005 15:35 GMT | 4 |
I am trying to create an excel file using ADO.NET (Can not use Excel COM interop classes). Everything seems to be working fine except the column header of the table sheet1 is also included in the output file. Setting the HDR=NO doesn't seem to fix the problem. Could some one
|
| How do I convert a base64 encoded bytearray? | 25 May 2005 14:41 GMT | 3 |
I have a webservice which queries a table in SQLServer. The table has a column, "Text", which is of datatype "image". When invoking the webmethod it returns dataset with the table included. The column is returned as a base64binary as can be seen in the declaration excerpt below:
|
| how to update datagrid | 25 May 2005 13:40 GMT | 1 |
(Type your message here) i am trying to create tables in sql server programmatically in vb.net.i can add fields and update them programmatically. i need to know how i can update the table records when displayed in datagrid.i want to update the datagrid/records as it is done in ...
|
| Type Casting to long | 25 May 2005 12:47 GMT | 1 |
When we retrieve data from a int field from a datatable and if I write lValue = (long)dtTable.Rows[0]["Fld1"] it generates an error at runtime. whereas it should be done because we are converting int to long which should be possible.
|
| dataset from tab separated | 25 May 2005 11:47 GMT | 4 |
I want to create a asp.net / winform application, which has a text box. In the text box, the user will paste data (copied from another source), in tab separated format. Supposedly, all the columns are always in a predetermined order, how can I
|
| Defaults in Column Mappings | 25 May 2005 10:09 GMT | 4 |
I have designed a DataAdapter which reads data from a table. The table has an auto-incrementing Primary Key. None of the columns in the table accept Nulls although some of the columns do have defaults. My question is - Is there an automatic method of filling these properties on
|
| ConnectionState problem | 25 May 2005 08:40 GMT | 1 |
My application connects to an Access database when it is loaded, and keeps the same connection open all the time. There is logic in the code to ensure that the connection is automatically opened the first time it is used:
|
| GenerateDBDirect | 25 May 2005 06:03 GMT | 4 |
What is the difference between GenerateDBDirect and the Insert/Update/Delete sql commands that can be generated via the advanced button in the select table section of the TableAdapter Wizard in Dot Net 2.0.
|
| ColumnMappings don't seem to work! | 25 May 2005 06:01 GMT | 3 |
I am new to column mappings and can't seem to make them work. The following is an example: DataTable table = new DataTable( "SYSTEM.Usernames"); table.Columns.Add( "S1", typeof(decimal) );
|
| DA.Fill Schema Retrieval | 25 May 2005 04:50 GMT | 1 |
It appears that the DA's Fill method does not grab the schema in situations like this: TasksCommandText = "SELECT * FROM \"tblTasks\" " + sTasksWhere + sTasksOrderBy;
|