| Thread | Last Post | Replies |
|
| Running query on web datset | 30 Jun 2004 12:20 GMT | 1 |
Is it possible to do run a select query on a dataset from a web method using a dataadapter? A code example would be great. If not, how can we grab hold of the remote dataset data in a local table? Thanks
|
| When DatSet reload? | 30 Jun 2004 11:24 GMT | 3 |
I have my data in a DataSet class. But the data could changed on the SQL Server from an other user. How can I know, that the data is changed? It will be very usefull, if I could define a trigger on the SQL Server, and that could send me an event to my program, and the I can refill ...
|
| Webservice Connection String | 30 Jun 2004 11:18 GMT | 1 |
I have a dataset from a web service. I want to use a dataadapter with the dataset. What connection string should I use so the da knows that it is acting on the remote db associated with the web service dataset? Thanks
|
| ADO.NET connection Pool question | 30 Jun 2004 01:30 GMT | 2 |
i have read a article : "Als o remember that each .NET assembly gets a unique PID. This means that each new assembly you run gets its own pool??regardless of the similarity of function or the fact that their ConnectionString values are identical."
|
| update, getting primarykey aswell of the current record added | 30 Jun 2004 00:46 GMT | 3 |
Once a user clicks on the "add" button it adds the new record to the DB but i want at the same time to get the primarykey of the record i just added. Is this possible without writing a new "SELECT * bla bla"? and if so, how 2? thx in advance,
|
| Is it possible to use ADO.NET and ASP.NET databinding with textboxes , HELP! | 29 Jun 2004 21:16 GMT | 3 |
I have several apps that use a roll your own approach, but I am embarking on a project which will not allow that with the time constraints. I have gened up a little app to try the databinding approach. Simply it is a page to maintain the Territories table in Northwind (SQL Server).
|
| What special little thing does table.select need? | 29 Jun 2004 21:09 GMT | 5 |
I have opened a datset from an Oracle Database. I am trying to 'Select' a non key column. strFind = "INTERNAL_EMPL_ID = '" & provId & "'" - This yields : "INTERNAL_EMPL_ID = '0000015615'"
|
| Strange Interop.JRO Error off Server | 29 Jun 2004 19:50 GMT | 4 |
ADO.net using VB.net I've written a simple application which will import data from one MS Access db to another. The file is on our 2K Server. The application works fine when I run it from VB.net... but when I create an
|
| Simple question | 29 Jun 2004 19:44 GMT | 2 |
For some reason I am having brain freeze and I am not even eating ice cream. I know this is a very simple question for some. I am filling a dataset with some information from a table off an AS400. Some of the time this table might have 0 to 1 record. Most times it will
|
| Updating one table from another | 29 Jun 2004 19:30 GMT | 1 |
I need to update one access table from another in a way that all new records are inserted and all existing records are updated. Is there an example of this that I can follow? Thanks
|
| Exception copying dataset | 29 Jun 2004 17:26 GMT | 2 |
I've got a puzzling situation. I have a strongly-typed DataSet with 3 tables which I want to copy into a generic DataSet. So I do this: DataSet ds = null; StrongDataSet dsStrong = new StrongDataSet();
|
| DataAdapter Update method throws DBConcurrencyException | 29 Jun 2004 15:00 GMT | 1 |
I am having this problem with an application which seems to call DBConcurrencyException when calling the Update Method to my DataAdapter. It seems to happen only when I add a new record to my DataTable and this is the first row, if I have 2 rows the exception is not thrown. I really ...
|
| ASP.NET: Error "Login failed for user 'sa'." | 29 Jun 2004 14:58 GMT | 2 |
When running the .ASPX program, I recieved the following error "Exception Details: System.Data.SqlClient.SqlException: Login failed for user 'sa'." I reinstalled Sql Server and issue is fixed. However, the issue occur again
|
| Cant see any data on front end | 29 Jun 2004 10:41 GMT | 5 |
I have the code below and for some reason when I run it, nothing shows in the front end. I put in a label and that does not show a value either. Both pages are below; viewAccess.aspx (html) and viewAccess.aspx.vb
|
| Dataview, adding a row | 29 Jun 2004 09:00 GMT | 8 |
trying to add a new row by entering it directly in datagrid bound to dataview. after typing in value, new row disappears. primary key is set to autoincrement. also how to assign another value to another column in datatable at the same time this datarow is being created through ...
|