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 connectionscentres

  1. connectionscentres

    how to remove leading zeros from numbers when I do CTRL + F?

    Hi, I have a simple ms access application that allows you to scan barcodes in to a form which stores them in the database. The barcodes are 6 digits in length e.g. 555666 but my handheld scanner always adds a leading zero - e.g. 0555666. You can get round this problem by changing the database...
  2. connectionscentres

    phpMyAdmin collations - latin1_swedish_ci??

    Seems that this is an issue caused by upgrading to MySql 4.1 http://www.informit.com/articles/article.asp?p=328641&seqNum=3 which introduces charsets and collations, the default ones being Latin1 and latin1_swedish_ci respectively. The illegal mix of collations issue must be because the data...
  3. connectionscentres

    phpMyAdmin collations - latin1_swedish_ci??

    Using phpMyAdmin 2.6.0-pl3 and MySQL 4.1.7. Anyone know why (1) all of a sudden PhpMyAdmin displays a collation column for all my tables (2) the collation for fields of Char or VarChar is set to latin1_swedish_ci (3) when I try to run SQL it complains of Illegal mix of collations between...
  4. connectionscentres

    return value for NULL fields when using date_format

    Hi, I cant find the answer on the manual pages. Maybe I should look harder. Basically I'm putting dates into a table using: INSERT INTO TEMP date_format(INVOICEDATE, '%Y-%m-%d %H:%i:%s') As datei then I can select dates that have put an INVOICEDATE in by doing: SELECT * FROM TEMP WHERE...
  5. connectionscentres

    php include or require_once

    I have a small site of about 66 pages using php and mysql to offer various database driver services. On each page where a database connection is required I have a php include directive at the top of the page. This includes a file where I make a single (non persistent) database connection each...
  6. connectionscentres

    Openrecordset

    Hey Reta, I have EXACTLY the same problem when trying to copy parts of a query to an Excel workbook. Here is my code: Dim objXL As Object Set objXL = CreateObject("Excel.Application") objXL.Visible = True objXL.Application.workbooks.Add Dim objActiveWkb As Object Set objActiveWkb =...
  7. connectionscentres

    Deleting a TableDef being used in a report.

    Hi RSfromCO. I have EXACTLY the same problem as you did. Did you manage to fix it?
  8. connectionscentres

    imagefilledrectangle() axis flip depending on version

    This may save you a lot of aggravation. When invoking the gd function "imagefilledrectange()" I noticed that it worked on one server but not on another. The first one had php5.0.3 installed with gd 2.0.28 and the second had php4.1.2 with gd 1.6.2. Other gd functions were working fine, just...
  9. connectionscentres

    help needed to include a dynamic gd image

    Hi, I have created a nice graph in php using gd's functions which generates a png image. Any suggestions on how to embed this into a web page? Simply doing <?php include"graph.php"; ?> doesnt work because the headers have already been sent off by the parent page.
  10. connectionscentres

    GD image cannot be displayed, because it contains errors.

    thanks, it works, you rock!
  11. connectionscentres

    GD image cannot be displayed, because it contains errors.

    Hi, I am running php version 5.0.3 and I think I have GD enabled. On the php info page for my server it says: GD Support enabled GD Version bundled (2.0.28 compatible) FreeType Support enabled FreeType Linkage with freetype FreeType Version 2.1.7 T1Lib Support enabled GIF Read Support...
  12. connectionscentres

    jsp session problem when proxy passing

    sorry, posted before reading your message. I think you're right and that's probably what I'll do.
  13. connectionscentres

    jsp session problem when proxy passing

    Problem: I've tried setting up URL rewriting by inserting <DefaultContext cookies='false' /> into the Host element of the server.xml file. Tomcat restarts successfully but urls do not contain any extra parameters. So I then wrote a jsp containing the following Integer num = new...
  14. connectionscentres

    jsp session problem when proxy passing

    You're right, it returns the IP of the proxy not the browser. So- in this case do you think URL rewriting would work?
  15. connectionscentres

    jsp session problem when proxy passing

    I guess so - I didnt realise session data was stored on the client - I just assumed it was stored on the host machine with tomcat, as the book i'm reading refers to them as session "objects" implying that they are dealt with in java. Thanks for the help!!!- you've given me a good starting point...

Part and Inventory Search

Back
Top