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 TouchToneTommy 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 christophorus

  1. christophorus

    MySql and VB express

    Thanks for the response! Is there anywhere I might find a tutorial on this. I've been searching but haven't found anything specific enough...
  2. christophorus

    MySql and VB express

    Is it possible to access a MySql database with VB express?
  3. christophorus

    Mysql and VB

    I have created a form with VB 2005 express. I would like to access records by id from a MySql table. Is this possible, and if so what is a good way to go about this?
  4. christophorus

    Data entry application...

    I need to build a data entry application that will allow me to seek out a record in mysql by an index number and quickly modify the records contents. This will be for dealing with direct mail response information. Any suggestions for a language to build this in? Or existing programs to do...
  5. christophorus

    Design Strategy and Views

    I am writing a php interface to access a large (100 million + records) database which is broken into 50+ tables by state. The script creates a temporary merge table with a union of the selected states depending on user input. I believe this will provide the largest reduction of unnecessary...
  6. christophorus

    Multiple Checkbox Values into String

    I am trying to collect the values from multiple checkboxes into a string. If the user selects lets say 3 of the choices, how do i format them into a string like "AK,CA,CO,". Do I need to create an array first? <form name="states" method="POST" action="<? $_SERVER['PHP_SELF']; ?>">...
  7. christophorus

    redirecting query cache

    I am trying to find out how to redirect the mysql query cache to a hard drive. My goal is to make it usefull again after a restart.
  8. christophorus

    Replace leading spaces with leading zeros

    Thanks! I used replace with update: mysql> update table_name set table_field = replace (table_field, ' ', '0');
  9. christophorus

    Replace leading spaces with leading zeros

    I am trying to replace the leading blank spaces in a character column with leading zeros. Ex: " 669025" to "00669025

Part and Inventory Search

Back
Top