| Thread | Last Post | Replies |
|
| Updated Primary Key (Identity) Value | 02 Aug 2007 23:35 GMT | 5 |
To start, I'm using VB 2005 and SQL Server Express 2005. This almost appears to be a bug, but I've yet to find an actual bug and generally narrow my issues down to user-error on my part. I have the following code snippet (LogFile is a class I've created simply to output to
|
| UPDATE TOP (1)? | 02 Aug 2007 22:57 GMT | 3 |
I'm using the OLEDB provider against an Access Database. I need to update just one record. Is there any way to do something like this? UPDATE TOP 1 [Articles] SET [Status]='MyClientID' WHERE [Status]='' I only want to update one record, because i'm going to select that record in
|
| Oracle Client and ADO.NET | 02 Aug 2007 17:59 GMT | 3 |
I'm considering using MS .net provider for oracle to connect to an oracle 10g R1 DB. I was reading thru some documents and it seems that an oracle client must be installed so i can use this provider.
|
| Change connectionstring Typed dataset | 02 Aug 2007 13:40 GMT | 5 |
I've noticed that if I change my connectionstring in the app.config file, this isn't enough, a second change in the Global.System.Configuration is necesary!!! This means that after deployment and if the SQL server is changed, changing
|
| Problem with ImageButton.OnClientClick when DataBinding | 01 Aug 2007 18:44 GMT | 3 |
I have the following tag in one of my DataList's ItemTemplates: <asp:ImageButton ID="btnViewQuestion" runat="server" BorderWidth="0" ImageUrl="images/qmark.gif" Height="27px" Width="26px" OnClientClick="window.open(<%#
|
| Using DataAdapter.Fill to return a DataTable complete with schema information | 01 Aug 2007 12:49 GMT | 2 |
When I use a DataAdapter and call its Fill method to populate data into a DataTable, most of the DataTable's schema information is missing: all the column MaxLength values are set to -1, Nullable is set to True for all columns, Identity to False for all columns, etc. This is a ...
|