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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jdmartin74

  1. jdmartin74

    Import Borland BDE data into Access via ODBC

    Yeh. Found solution! Edit value 'CollatingSequence' in: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Paradox from 'Ascii' to 'International'. I also did the same in: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\3.5\Engines\Paradox
  2. jdmartin74

    Import Borland BDE data into Access via ODBC

    I've tried that, and I get an error saying "Incorrect collating sequence".
  3. jdmartin74

    Import Borland BDE data into Access via ODBC

    I have some data in what I believe is a Borland database using the BDE (Borland Database Engine). I have data files ending .DB, .PX, .XG0, XG1, etc. plus a few others I would like to get this data in Access. Does anyone know of any (ideally free) ODBC driver to do this or any other way? Thanks
  4. jdmartin74

    alter table - adding columns in specific order

    Thanks. I had thought of that but thought there must be another way! I used MySQL a lot and you can do it with that!
  5. jdmartin74

    alter table - adding columns in specific order

    I know it doesn't affect the working of the database, but for ease of understanding the set up later, I would like to alter an existing table and add a column to it before other columns. Does anyone know how to do it?
  6. jdmartin74

    Variable field name

    I'm not in a loop, but the lines: sql_stm := 'SELECT '||v_field||' from COMPANIES'; execute immediate sql_stm into v_address; are exactly what I needed. Thanks so much.
  7. jdmartin74

    Variable field name

    I have a function which is passed a value. I wish to make up a field name based on that value: v_field := 'ADDRESS_' || p_line; The above line would give v_field a value of 'ADDRESS_1' for example. I then want to do: SELECT v_field INTO v_address from COMPANIES; This works in so far as the...
  8. jdmartin74

    Access number format

    I have tried this. Access seems to overide based on regional settings still. The format applies but the comma is treated as a thousand seperator and the period as a decimal. Access is obviously reading the local regional settings to get this information.
  9. jdmartin74

    Access number format

    I have a report displaying numbers for different countries. I can identify each country but wish to display the numbers differently for each. For example, 10,453.56 for a UK number and 10.453,56 for a French/German etc. number. Access is always using my default locale but I need this to change...
  10. jdmartin74

    Export bitmap OLE Object to file

    Thanks. I'll give it a go.
  11. jdmartin74

    Export bitmap OLE Object to file

    I have a database with a table of images stored as OLE Object field types. I would like to export these to individual files, however, I can't seem to do it. I have tried the following code below. It works in that the file is written, however, it is not a usable bitmap file. Can anyone help...
  12. jdmartin74

    Oracle 8 and PHP can this work? newbie

    This may also help... http://www.puschitz.com/InstallingOracle9i.html
  13. jdmartin74

    Oracle 8 and PHP can this work? newbie

    Getting PHP to work with Oracle can be a right pain. I spent a long time trying to get this to work and did finally crack it. What OS are you using for your PHP?
  14. jdmartin74

    Ampersand in address line

    Thanks very much. I knew there was an easy way. I just couldn't find it for looking!
  15. jdmartin74

    Ampersand in address line

    I need to pass an ampersand character on an address line as part of a value. I realise obviously that the ampersand character breaks each field on the address line when used with the GET variable; which is exactly my problem. Does anyone know how a field value on a GET line can contain an...

Part and Inventory Search

Back
Top