| Thread | Last Post | Replies |
|
| Oracle database connection error | 30 May 2005 14:38 GMT | 1 |
For login screen program username and password are accepted anc check it from oracle database. The valid username and password entered. but I got the error "ORA-12154: TNS could not resolve service name". i am using provider for this connection.
|
| ADO.Net 1.1 : SQL Insert ? | 30 May 2005 03:36 GMT | 4 |
How do I convert this ASP 3.0 to VB.Net coding? ASP 3.0 Coding ----------------- Set rs = Server.CreateObject("ADODB.Recordset")
|
| CSV read problem using Jet OLEDB | 29 May 2005 22:39 GMT | 2 |
I am trying to read a CSV file using Jet OLEDB provider. The file (badimport.csv) looks like this: Name,Description,DefaultPrice_$_per_m3 S6,Structural sawlog MSG6,65
|
| Updating joined tables | 29 May 2005 18:43 GMT | 5 |
I am trying to display data from two sqls tables in a datagrid, and then alow the user to make changes that update one of the tables. Currently I am bringing in two tables into a dataset, merging them and binding them to a datagrid.
|
| Return always 0 | 29 May 2005 13:37 GMT | 1 |
I am trying to find out why my return from my ASP.Net page is always 0. I have the following code: **************************************************** Dim objCmd as New SqlCommand("AddNewResumeCoverTemplate",objConn)
|
| How to access a huge xml document | 29 May 2005 06:20 GMT | 4 |
I always used XmlDocument to load a xml file into memory and to access it. But if the xml is very huge (Say over 500MB) How can I access it?
|
| Filling a table using multiple adapters | 28 May 2005 22:12 GMT | 2 |
I have a dataset with 2 tables(Header and Detail) I am using 10 adapters to fill the dataset(5 for Header and 5 for detail). All the adapters are having same columns(schema) as the tables in the
|
| Need advice-VB.NET to C# transition | 28 May 2005 15:44 GMT | 8 |
it looks like i'm in a C# world here in houston,Texas and i'm gonna have to make the plunge after doing and really enjoying VB.NET with winforms and web forms for the last couple of years. yes, even picked up some javascript along the way. my question is (since there's no classes ...
|
| How to insert data form Xml into database | 28 May 2005 13:34 GMT | 1 |
I have a xml files, there are many record in it. Can I insert these record into database at once, or I need to insert it record by record?
|
| Adding a row to a dataset | 28 May 2005 09:35 GMT | 2 |
I have a need in my application to add a dummy row to a dataset object after I have filled it with a call to the database. Trying to find a solution I thought that doing a dataset merge might work, however its doesn't seem to be. Following examples I found in some MSDN articles I ...
|
| Redistributing - MSDE | 28 May 2005 04:31 GMT | 6 |
I want to develop an app that requires database management. I was initially planning on using an mdb and the Jet driver. However, MSDE offers more robust features. For some reason I always thought you could develop apps with MSDE and freely redistribute. However, I recently read ...
|
| DataAdaper.Fill question | 28 May 2005 03:23 GMT | 1 |
Hi all, with the sample below, if the query returns huge amount of data, will database returns the portion required by program or returns all data, then Fill methods filter unnecessary ones? int currentIndex = 0;
|
| Database backup/restore | 28 May 2005 03:10 GMT | 1 |
Is there any way to backup/restore an SQL Server database from .NET, using the System::Data::SQLClient namespace? Thanks
|
| Error MSDAAB ExecuteDataset | 28 May 2005 03:03 GMT | 3 |
I'm confused on calling ExecuteDataset with on a stored procedure with a single parameter. The following code gets an error stating there is no Stored Procedure with the name of '4' (probably the value of the CommandType.StoredProcedure enumeration). Dim parm() = New ...
|
| How does Dataset.Relations work internally? | 28 May 2005 02:14 GMT | 10 |
Does ADO.NET internally sets up hashtables for the columns that are used to tie tables, so that later on hashtables can be used to quickly retrieve data? Or does it just loop through data to locate the ChildRows. For instance, in a line like this.
|