Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ChrisHiggins

    Link to SQL server with Bigint field

    Thanks for your ideas - I am sorry to say that this will not work for me as the table is being updated all the time (30000 records a month).
  2. ChrisHiggins

    Link to SQL server with Bigint field

    Thanks for your help - The bigint is the identity column and as the database is out of my control I am unable to change any of the field definitions. Looks like I am stuck with this one. Thanks again for your help. Chris
  3. ChrisHiggins

    Link to SQL server with Bigint field

    I am trying to link it to Access. If I import the table it is OK and the ODBC driver converts the data, but if I link to the table when I look at the data all I get is #Deleted in all of the fields. Chris
  4. ChrisHiggins

    Link to SQL server with Bigint field

    Does anybody know of a sqlserver ODBC driver that will allow for the Bigint data type, as the normal Microsoft one does not if you are linking tables. Thanks Chris
  5. ChrisHiggins

    Sage Line 100 ODBC Reg Fix

    Open Regedit and go to HKEY_LOCAL_MACHINE - Software - ODBC - ODBC.ini then in the required ODBC section create an entry named "IgnoreSpareFields" and set this to "No" (these are case sensitive) you will also need to refresh (or somtimes drop and reconnect) the odbc links in your program...
  6. ChrisHiggins

    Unable to print report

    I am converting a project from VB6 to VB.net and I am having problems with the crystal reports. The code is as follows:- 'Print the transfer report Dim CPProperty As CRAXDDRT.ConnectionProperty Dim DBTable As CRAXDDRT.DatabaseTable Dim Report As New...
  7. ChrisHiggins

    ADO.Net & sql server

    I am porting this from vb6/ado so have all the coding there I know how to connect to the sql database. and to read records using the datareader. This however only gives me read-only access and I need to be able to update the records so need to know how to access the records as read-write. I...
  8. ChrisHiggins

    ADO.Net & sql server

    I am new to ado.net and need to do the following:- 1. Read the records in an SQL table where the processed field is false. 2. I then need to check these records and if incorrect write a record into a seperate sql table. 3. if the record is correct then I need to update the processed field to...
  9. ChrisHiggins

    ADO connection to SQL server

    Solved the problem by using [interfaced] = 0 instead of False. Thanks it was your query that put me in the right direction. Chris
  10. ChrisHiggins

    ADO connection to SQL server

    The interfaced field is a type bit length 1 Chris
  11. ChrisHiggins

    ADO connection to SQL server

    I am using VB6 to connect to an SQL server vie ADO if I use the following code I can connect. stSQLMsg = "Select * from [purchase_interface] " With objConn .Provider = "SQLOLEDB" .Properties("Data Source").Value = stSqlServer .Properties("Initial Catalog").Value...

Part and Inventory Search

Back
Top