| Thread | Last Post | Replies |
|
| I need an advice... | 31 Dec 2006 10:13 GMT | 21 |
maybe I'm OT, but I don't know where else I can put this question. Say you have to write a program for a very small company (5 pc). They just need to store some data in a database which is on a server and they need to access this database from some other computers, with client ...
|
| Binding DateTimePicker | 31 Dec 2006 08:05 GMT | 4 |
A DateTimePicker control on my form is bound to a datetime field in a DataTable. When inserting a new record the default value for DateTimePicker is today's date.
|
| Storing Connection String | 30 Dec 2006 23:20 GMT | 2 |
I have Users table in my database which stores usernames, passwords and other information about users. When starting the application the user logs in providing username and password. This is why I want the connection string (including database username and
|
| retrieving just one row based on the primary key | 29 Dec 2006 13:33 GMT | 8 |
Is there a preferred way to obtain one row of data based on the PK? I can retrieve the record onto my C# app using a dataset or datareader, but then I have to loop thru this result set even though I know there will always be either zero or one row retrieved. Isn't there a more ...
|
| Strongly typed datased (it's datatable) as singleton | 29 Dec 2006 12:21 GMT | 1 |
I have problem with implementing strongly typed dataset (with tableadapter) as singleton (A very large amount of data loaded at startup of winforms app, I need this data at numbers of forms, and I need to bind this dataset/datatable at designtime) . At first I realized ...
|
| Connection TimeOut | 29 Dec 2006 09:27 GMT | 4 |
Good Day to all. I have a store procedure that makes many queries, use cursors and some other complicated calculations. If I run it on Management Studio it takes around 3 minutes and work fine. But when I run it from VB.Net it gives me connection
|
| Move DataRow to other DataTable | 29 Dec 2006 07:34 GMT | 4 |
I'm trying to move a row from one table to another. I get the error message that the row already belongs to another table even though I have removed it from the table. I'm trying to avoid recreating the row for performance reasons. DataTable dataTable1 = dataTable2.Clone();
|
| Web Service max out at 20 SQL connections | 28 Dec 2006 23:16 GMT | 12 |
I have been tasked with load testing our .NET 2.0 web service, which is really just wraps 1 or 2 very simple and light weight SQL queries. Under light load (less than 20 requests per second), everything works fine. Each transaction takes about 10-12 ms to complete. As the load ...
|
| Use OleDB DB2 provider type without extra software? | 28 Dec 2006 20:45 GMT | 4 |
I recently realized that I need IBM's iSeries Access installed to use Provider=IBMDA400.DataSource.1 in an OleDB connection string. Is there any .NET 2.0 class or dll that provides DB2 data access without any other software installs besides the .NET 2.0 Framework? Or,
|
| SqlBulkCopy | 28 Dec 2006 18:56 GMT | 1 |
what will happend if SqlBulkCopy violate constraints. and how i can solve this problem.
|
| menu | 27 Dec 2006 15:28 GMT | 8 |
Hello Everyone .......i created menu using Css and HTML code..but i want it to display submenu when mouse is over on the horizontal strip...but it's not working and either it show all the menu or not when the page is loaded......so what should i do?
|
| Retrieving Schema info for connection | 27 Dec 2006 14:40 GMT | 1 |
I'm building a program to navigate through a database. The user chooses either ODBC or OleDb and provides a connection string. With OleDb I can get the database names from the connection. Is there a way I can do this with an ODBC connection? Programs like DTM Data Editor can do ...
|
| Update Command gives "Must Declare scalar variable "@P7CYCELDAY"" | 27 Dec 2006 14:03 GMT | 2 |
This is driving me nuts! I've got a form that is giving me fits. I've done the same thing that I've done on dozens of other forms. When the data adaptor update command is executed I get the "Must declare scalar variable @p7CYCLEDAY" Here are various pieces of my code.
|
| dataTable.Clear() | 27 Dec 2006 12:04 GMT | 7 |
I would like to remove all the rows of a DataTable - but not by using a loop through all the DataRows - but by using a single command. I tried - dataTable.Clear() which is supposed to remove all rows of the dataTable - but it doesn't seem to work - the table is still full.
|
| Adding rows to table from DataGridView | 26 Dec 2006 17:11 GMT | 8 |
hello, am in a bit of a problem.. wonder if anyone can help? I got two tables one is tblOrders and the other is tblDeletedOrders I'm handling the UserDeletingRow to insert the deleted row (order) into the tblDeletedOrders to sort out some kind archive or log.
|