| Thread | Last Post | Replies |
|
| Low-overhead database to use with .NET 1.1? | 14 Jan 2006 20:06 GMT | 7 |
I have a product (running on .NET 1.1) that needs to maintain a local database on the machine it's installed on. I want something with extremely low resource overhead (i.e. no SQL Server, no MSDE). It needs to be quick with inserts and selects. It also can not be a memory hog.
|
| Clarification of an example | 14 Jan 2006 17:24 GMT | 3 |
The following example from "MURACH's VB.NET database programming with ADO.NET" seems to be missing something: particularly a type for ('As Vendor'?? ) Maybe someone can help clarify what I need to make this work. This example demonstrates how to create a VendorDB class with the ...
|
| ADO.net Code contest | 14 Jan 2006 09:04 GMT | 34 |
I am sponsoring a contest to see if someone can come up with ADO.net code to insert records into a MS Access 2003 database faster than ADODB methods (MS ActiveX Data Object 2.x library). My experiece has shown that I can write records to Access at least 4 times faster using ...
|
| Parameter placeholders in SQL queries | 14 Jan 2006 06:42 GMT | 4 |
I'm trying to write some DB-independent code using ADO.NET 2.0 and the System.Data.Common.DbX classes, as suggested before; but I'm encountering another weird problem. Here's some code (let's assume the provider name and the connection string
|
| Images inline with blog contents - HOW?? | 14 Jan 2006 06:35 GMT | 8 |
I am seeking to hand-roll my own blog in ASP.NET 2.0 and SQLExpress 2005. Why? Because I can. Because I will gain experience. The one thing that has me stumped at square one is inline images. That is, images inline with the actual content of the blog itself. Is there
|
| CompareValidator for dates > than today | 13 Jan 2006 22:08 GMT | 1 |
I am trying to check the date of my field to check if it is greater that today, but I am getting an error. I am using : <asp:CompareValidator runat="server"
|
| Help on reading data ? | 13 Jan 2006 21:01 GMT | 1 |
I am building an asp.net application wich collect data from an SQL server database. Those data in this database can be huge with the time. Actually, I am retriving those data through store procedure return in a
|
| Viewing ExecuteQuery String | 13 Jan 2006 19:40 GMT | 2 |
Given a technique similar to the following, instead of actually executing the Stored Procedure, I need the resulting SQL command string written to a file and then manually executed in Query Analyzer. Dim objSqlConn As New SqlClient.SqlConnection
|
| How to create a dataset from XML for use in Crystal Reports | 13 Jan 2006 19:00 GMT | 5 |
I have an app that reads & writes to XML files. I now would like to create some reports using Crystal Reports, and the usual way I do this is by creating a dataset in Visual Studio & inserting the fields graphically. However, I cannot find out how to do this within the VS
|
| Closing connections | 13 Jan 2006 18:27 GMT | 7 |
I have been misunderstanding the closing of the connection. If I have set CommandBehavior.CloseConnection, I thought that connection would be closed when you had read through the dataread. As a matter of fact I found that if I had it set, I couldn't seem to get to the next results, ...
|
| Chosing a Hetrogeneous Oracle/.Net stack | 13 Jan 2006 14:58 GMT | 2 |
I am currently architecting .NET Application for an Enterpise Level client. The customer has a natural Oracle bias. I think that Oracle is a great DBMS too. Probably still better thatn SQL Server.
|
| .LDB File not being deleted after oledbconnection.close being call | 13 Jan 2006 14:21 GMT | 3 |
I have seen a thread similar to this problem earlier in this thread unfortuantely did not really see a solution. My problem is as follows. I am opening a connection to an access database performing some operations and the closing (typical use) I notice however that upon calling ...
|
| Related tables for grids in vs 2005 | 13 Jan 2006 08:17 GMT | 3 |
I'm quite new to VS 2005, and tries to connect several controls at my form. I thought this should be simple without writing code, but I can't get it to work. I have one dataset with two related tables.
|
| using smalldatetime to ONLY store date | 13 Jan 2006 08:14 GMT | 1 |
When using the smalldatetime data type in a SQL database, how do I prevent the field from storing the time? All I want in the field is the date, but is keeps adding 12:00:00 AM at the end of the field. Thanks!
|
| Populate Strongly Typed Dataset - without "Configure Data Adapter" | 13 Jan 2006 01:09 GMT | 3 |
I have begrudgingly decided to use Strongly Typed Datasets but hate the code that is generated by dragging and dropping ADO.Net controls and using Configure Data Adapter and letting the 'Wizard' build my SQL, for the following reasons:
|