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 gkittelson 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. 123jon

    Unable to view MS SQL BLOB field (picture) using PHP

    Thanks DonQuichote and Jpadie for your response. Data was being dropped, as suggested by Jpadie, so I used the following command before fetching the data: ini_set("odbc.defaultlrl","99999999"); Issue resolved. Thanks again.
  2. 123jon

    Unable to view MS SQL BLOB field (picture) using PHP

    I am unable to view pictures (jpeg) from a MSSQL Server 2005 database (BLOB field), no image is displayed on the web page (red X displayed). Also as a troubleshooting step, I displayed the content of the BLOB field and got some characters which I dont understand. Picture type: JPEG PHP...
  3. 123jon

    Locking Records - Need Help

    Thnx Qatqat. I am using InnoDB tables. But the strange thing is that the lock now works correctly once i remove the TRIM command from my SELECT statement.
  4. 123jon

    Locking Records - Need Help

    I am using VB6's SELECT..LOCK IN SHARE MODE command. However, the entire table is being locked when i try to select and lock just 1 record. I "solved" this problem by adding a primary key to 1 of the tables. Now the other table has a primary key and index but I am still having...
  5. 123jon

    MSHFlexGrid - How to get values of selected row

    thnx i will try that.
  6. 123jon

    MSHFlexGrid - How to get values of selected row

    After loading the records in MSHFlexGrid. I need to display all the fields of the record/row that the user double clicked (selected) in the MSHFlexGrid. I notice that the value of field that was doubleclicked will be assigned to MSHFlexGrid.Text. But I want the values of the other fields also...
  7. 123jon

    CHECK IF MYSQL TABLE OR RECORD IS LOCKED

    I am using MyISAM Tables.
  8. 123jon

    MySQL VB

    See the following website: http://www.mysql.com/doc/en/Windows_installation.html
  9. 123jon

    LOAD DATA LOCAL INFILE and ERROR 1148

    Thank you all 'MYSQL -u username --LOCAL-INFILE=1' worked.
  10. 123jon

    CHECK IF MYSQL TABLE OR RECORD IS LOCKED

    I am using VB6 to add records to a MySQL database. I would like to know how to check if a table or record is already locked. See the code below :-- sSQL = "Update ItCustmr Set...etc. etc." 'BEFORE LOCKING I WOULD LIKE TO CHECK IF THE TABLE 'ITCUSTMR' IS ALREADY LOCK...
  11. 123jon

    Viewing database changes in multi-user system using VB

    Thank you all for your response. For info on MySql see: www.mysql.com
  12. 123jon

    Viewing database changes in multi-user system using VB

    I am new to MySQL and VB6. This is my situation, I am creating a multi-user application with VB screens as the interface and MySQL as the database. My problem is VB reads the MySQL database using SQLs (Cursors), so individual users will not see new records that are added because each user is...
  13. 123jon

    LOAD DATA LOCAL INFILE and ERROR 1148

    When I execute the follwing command: LOAD DATA LOCAL INFILE "pet.txt" INTO TABLE pet; I am getting the following error: 'ERROR 1148: THE USED COMMAND IS NOT ALLOWED WITH THIS MySQL VERSION' I am using MySQL version 3.23.54-max-debug. I start MySQL with MYSQLD --LOCAL-INFILE=1 I...
  14. 123jon

    How can I view Dynamic update of MySQL tables using VB Forms?

    I am new to MySQL and VB6. This is my situation, I am creating a multi-user application with VB screens as the interface and MySQL as the database. My problem is VB reads the MySQL database using SQLs (Cursors), so individual users will not see new records that are added because each user is...

Part and Inventory Search

Back
Top