| Thread | Last Post | Replies |
|
| Accessing DataTable Columns | 29 Mar 2004 16:39 GMT | 2 |
Simple question: when accessing column values, is numerical indexing faster than referencing by column name? I know that in the case of the DataReader, the answer is yes; was just wondering if the same applies to a DataTable. Regards,
|
| Bound controls, which dataset, dataadapter? | 29 Mar 2004 16:36 GMT | 1 |
Dear reader, I'm making a general function to update a database with changes on a form with bound controls. I was wondering if it is possible to: (1) see in code to which dataset the control is bound to? I'm adding the
|
| Challenging question | 29 Mar 2004 15:35 GMT | 2 |
I have an unsolvable otherwise cumbersome problem. Currently I am using SqlCe on my Handheld w/ some data downloaded onto it from Sql Server. The update/insert/delete commands are then issued onto the Handheld database. Now with all data are changed/modified on the SqlCe, I created ...
|
| End user application for importing Excel to DataSet? | 29 Mar 2004 13:57 GMT | 2 |
Can anyone suggest a tool that could be used to provide an end-user interface to import Excel "databases" into a DataSet? I am developing an application where my users will frequently need to import inventory lists they get from clients. Unfortunately these lists will frequently ...
|
| DataTable.select | 29 Mar 2004 13:41 GMT | 2 |
Hello, Im +/- newbi I have a DataTable containing several DataColumns Some columns have single names, like "IP", others have composite names, like "IP Subnet" I want to select rows where IP and IP Subnet are not empty strings, so here come my two questions
|
| The connection is already Open (state=Open)". when it goes to SaveTOSQL. | 29 Mar 2004 13:36 GMT | 1 |
Hi Guys I tried to insert data into SQL server database using the following code. All data that I received from all my connections (10 socket). It runs for sometime It was able to insert some data then suddenly in the middle of the process I encountered "The connection is already ...
|
| Concurrency violation! | 29 Mar 2004 13:35 GMT | 1 |
I am making use of the disconnected dataset in C#. I am writing an MDI App where the Child of the MDI makes use of a disconnected Dataset. I open two Child forms! The first Child form I changes some data and save it to the database.
|
| stored procedures and typed datasets | 29 Mar 2004 12:18 GMT | 5 |
I have the following setup: 1. 5 tables in a SQL database: - Protocols - Readers
|
| DataView Bug? | 29 Mar 2004 12:15 GMT | 4 |
I ran into this toady and I can't figure it out. Here is the code: System.Guid guid = this.dsLoop.Device[this.cbDomainPanels.SelectedIndex].ID; //This doesn't filetr correctly // DataView dv = new DataView(this.dsPanel.Device, "[Parent]='" +
|
| ADO.NET / Oracle problem | 29 Mar 2004 12:07 GMT | 8 |
We have a table in Oracle described as the following: SQL> desc cubetest Name Null? Type ----------------------------------------- --------
|
| Using DataReader to fill DataGrid. | 29 Mar 2004 11:56 GMT | 8 |
As I read about .NET i see that we should use a datareader to read data. Well, that's OK, but is this det best way of filling a Datagrid just for reading. I don't want to use a listboks because I want to add some collors to the cells depending on the values and so on. So, is there ...
|
| Set dataset element default value to empty string | 29 Mar 2004 09:49 GMT | 4 |
I'm using vb.net 1.1 and VS2003. in the dataset designer I'm trying to set the default value of a dataset table column (actually its an attribute) to an empty string so I don't get dbnull error in my code. How can I do this. In databases I can set a default value of empty string ...
|
| AddNew Row not consistent.. | 29 Mar 2004 00:04 GMT | 4 |
only some rows are being added to dataset when i run this method repeatedly ---any idea why it would skip some rows? double pid= 0 pid=unique(); \\ generate unique numbe DataRow newrow2= dataSet11.Tables["tbl1"].NewRow()
|
| Finding If A Given Value Exists In DataCol | 28 Mar 2004 23:58 GMT | 1 |
I have filled a dataset.tables("MYTBL") with n records, using the SQLDataAdapter.Fill() method. A Datacol("FNAME") is defined on the "MYTBL". For a given value , say fn_str, is it possible to find the row number within the Datacol("FNAME") where the value is first available / ...
|
| Retrieving Record after INSERT INTO statement | 28 Mar 2004 22:48 GMT | 5 |
I am using an OleDb.OleDbCommand to insert a new record using the ExecuteNonQuery method with an SQL "INSERT INTO" statement. Is it possible to somehow retrieve the record/s inserted without having to perform an additional SQL statement?
|