| Thread | Last Post | Replies |
|
| sqlBulkCopy | 29 Feb 2008 22:45 GMT | 1 |
I have some VS 2005 VB.NET code that uses the writeToServer method of a sqlBulkCopy object to write records in a dataTable to the SQL server. The code works fine against our SQL Server 2000 database, but we get a 'login failed' error against 2005.
|
| 2008 Express Edition missing Data drivers? | 29 Feb 2008 18:52 GMT | 3 |
I just started doing some basic exercises with Visual Basic 2008 Express Edition (Version 9.0.21022.8 RTM, Microsoft .NET Framework Version 3.5) and I do not seem to have what I would call routine data drivers installed. Initially, I only want to connect to a Northwinds db in my ...
|
| How to solve DataSet Designer SQL errors? | 29 Feb 2008 13:59 GMT | 1 |
I have writing easy to moderate SQL in the DataSet Designer and Query Builder, using a Jet 4.0 connection to an Access 2003 DB. I am running VB.NET 2005 sp1. As soon as I try to do anything more than the most trivial SQL (e.g. simple
|
| DataAdapter Solution with support for paging? | 29 Feb 2008 05:42 GMT | 6 |
is there are ready component (maybe an data adapter) existing which has advanced features like paging (with server cursors) but still allows merging? Thank you,
|
| load flat file into datatable | 28 Feb 2008 21:36 GMT | 2 |
Anyone, I'm looking for a way to load flat files into a datatable in vb.net (2005) My flat files are tabbed delimited files with the field names on the first row I could dump the data into a sqlserver via DTS and then query against a
|
| Initial opening speed | 28 Feb 2008 21:36 GMT | 7 |
My vb.net seems to be slow on initial loading. My clients are not impressed as they had used the ms access version of the app previously and think that the old app is faster in loading. I understand .net apps need to compile themselves before execution. Is there any way I can ...
|
| How import data from SQL Server? | 28 Feb 2008 21:36 GMT | 2 |
What's the best way to import all the tables (w/data) from an SQL Server database (in production) to my SQL Express database (on my local dev machine)?
|
| Disabling EnforceConstraints | 28 Feb 2008 21:36 GMT | 1 |
Is there a way to disable EnforceConstraints on a dataset? I have this statement ds.EnforceConstraints = true in MyDataSet.Designer.vb but I am reluctant to set it to false as the designer may overwrite the code. I only wish to do it temporarily to speed up fill operations.
|
| Tables and columns name can contain accented words? | 28 Feb 2008 21:36 GMT | 1 |
In my language, Italian language, we have words with accent, for example "città" or "perchè"; can I create tables or columns in sql server with names that contain letters with the accent (i.e. "à" "è" "ì" "ò" "ù")? Is this absolutely not recommended? Or is it an acceptable ...
|
| timeout error | 28 Feb 2008 21:09 GMT | 1 |
I've a method in my web service..which makes a call to db and sends back a dataset.. the query takes 2 mins to fetch the results..by that time i'm seeing a 'operation has timed out error' on my screen..
|
| OleDbCommandBuilder insert query will not work? dataset to Access | 28 Feb 2008 18:35 GMT | 4 |
I am trying to take a very strangely delimited text file and put it into access. So far I was able to get the text file into a dataset and figured from there I could get it into access. I am trying to use the code below but the insert query(oledbcommandbuilder) just will not ...
|
| Need some advice on my Deployment Pkg | 28 Feb 2008 18:10 GMT | 3 |
Hello. Using XP Pro w/SP4 and VS 2003. I wrote my program with the connection string and the path for loading the Maps as follows: C:\MVB.NDbProJim\Ch7\ROE6AllRecords2\Maps. The Maps sub-directory containes all 116 Maps of the Lots and also the ROE6.mdb database. But when I deplay ...
|
| Problem with AdomdCommand with passing DataTable with DBNull in some cells | 28 Feb 2008 14:59 GMT | 2 |
The following code would fail, with the error: "The '' string cannot be converted to the double type." when trainTable contains rows with DBNull in some of the columns. How can I pass NULL to MSAS?
|
| Must delcare the scalar variable | 27 Feb 2008 18:39 GMT | 1 |
I am running an Update routine that calls a function. It appears that the function never executes because I receive: Must Declare The Scalar Variable @Country. Code:
|
| a problem about connect to access with ODBC | 27 Feb 2008 18:04 GMT | 1 |
System.Data.Odbc.OdbcConnection conn = new System.Data.Odbc.OdbcConnection(@"Driver={Microsoft Access Driver(*.mdb)};Dbq=C:\abc.mdb;Uid=Admin;Pwd="); when invoke conn.Open(); the program throw an OdbcException
|