| Thread | Last Post | Replies |
|
| How to cancel SQL query from VBA ADO? | 26 Sep 2006 07:27 GMT | 2 |
I know there's the cancel method for connections and recordsets but I can't find an example in VBA only C++. I want to give my users the ability to cancel a SQL query on demand. cheers,
|
| VB6 Using ADO to Login to SQL Server using NT Authentication | 25 Sep 2006 19:53 GMT | 3 |
I have an application that uses a secure SQL Server Database with a UserID/Password that is different from the NT (XP) Workstation Login/Password on the Domain. The SQL Server is setup for NT Authentication Only. Simply stated, I need the APPLICATION to login
|
| vb6:ado:sql: How to implement a rowlock? | 25 Sep 2006 18:44 GMT | 2 |
CursorLocation, Connection Mode, adLockPessimistic, adShareDenyWrite, WITH (ROWLOCK) hint ..... I'm getting a headache! Simply, what I want to do is as follows; User 1 has a grid with a list of rows
|
| Parse XML String, not a file | 25 Sep 2006 18:10 GMT | 1 |
I need help. I have a VB 6 library which get data from a GIS Server. The data is a xml string. I want to parse the string by MSXML DLL. I knew 'DOMDocument' can load xml
|
| dataGridView | 25 Sep 2006 03:59 GMT | 1 |
I would like to create data grid view that will load values from BOOK table but I want to get real name of author from table AUTHOR and not author_id from BOOK table. Actually, I want to make data bound...
|
| odbc: call failed 3146 | 24 Sep 2006 11:42 GMT | 1 |
I have a vb program that connects to odbc to an sqlexpress server. When i try to write data to the db, i get this message: Release Error: Script #1 (Ascent Capture Database) [3146 Index Table (dbo.DIGIDOS): ODBC: de oproep is mislukt.]
|
| Portable app? | 24 Sep 2006 11:37 GMT | 3 |
What are the guidelines to make portable app.? I've been using MSSQL server for database but if I compile app and then install it on some other comp. there'll be error because it has no MSSQL installed.
|
| MDAC_TYP.EXE: Which version? Distribute or not? | 23 Sep 2006 21:09 GMT | 8 |
MDAC_TYP.EXE: Distribute or not? I have created a simple VB6 database application that uses an MS Access db, for which ADO 2.0 is enough. When I create the setup package with the Package And Deployment Wizard, the large file MDAC_TYP.EXE is
|
| Access Database help! | 22 Sep 2006 16:23 GMT | 8 |
Ok, this is my first time posting to google, so here it goes. I am trying to query an Access database for latitude and longitude so that I can show a marker on Google maps. Here is the code if anyone can help! Dim MyConnection As ADODB.Connection
|
| How to work with SQL Server | 22 Sep 2006 15:11 GMT | 4 |
We finally got MS SQL Server 2005 and we are trying to learn how to work with it, as far as getting it to run the original queries we have in MS Access 2000 database. We are still using the Access as our front end gateway, so we have links to the server that were created by our IT
|
| Import data from a text file into SQL Server table at one go | 22 Sep 2006 10:39 GMT | 12 |
I could use the following statement to transfer data from Excel to SQL Server. With objConnMisc .Provider = "Microsoft.Jet.OLEDB.4.0"
|
| Help With Update Statement | 22 Sep 2006 06:20 GMT | 2 |
Would appreciate some help here. Throws a Error 94 Invalid use of Null. "UPDATE TBL_EMPLOYEES SET [Benefit_Date] = " & IIF(Isnull(Me!txtbenefit), "Null", "#" & me!txtbenefit & "#") & "),.... this doesn't work either, still throw error 94
|
| MS Access and Typed Dataset problem | 22 Sep 2006 05:33 GMT | 1 |
I am attempting to use a typed dataset with an Access database. I have the data showing in a grid and that works prefectly but when I try to update, it does nothing. I tracked the problem down to the fact that the DataAdapter wizard does not generate UPDATE and DELETE statements. ...
|
| Most efficient way to process this set of records??? | 21 Sep 2006 23:52 GMT | 2 |
I'd like to know the most efficient way to process a set of records. I've built a composite record that is to contain columns from 6 other "Master" tables. I need to update the composite record with the values of those columns and perform some calculations along the way. I ...
|
| ArrayList and Filters | 21 Sep 2006 21:56 GMT | 3 |
I have an interesting problem. With the code below, the loop takes ages to run: For intA = 0 To aryJobs.Count - 1 Dim strJobx As String = aryJobs(intA).ToString
|