• Hubs
  • tagged mysql table

1-10 of 12 hubssort by Hot Best Latest

Screen shot of polling chart83

PHP, MySql and Yahoo Flash Charts, yahoo dev network

Screen shot of polling chart Today we will do a chart using PHP, MySql and Yahoo Astra API (charts). The completed work will look something like this: ...

1 comment    technology marketing web
90

Simple PHP web based address book using MySql

Today we will be creating a web based address book using PHP and MySql, it will be using the $_GET superglobal, as a means of reviewing the database contents. Before we start here are the source files: ...

17 comments    business technology internet
naveenkadian profile image67

Incorrect Information in .FRM File of InnoDB Table

MySQL organizes all the data as tables, irrespective of storage engine used. If you are using MySQL with InnoDB tables, these tables might get corrupt due to hardware faults, unexpected power failure, MySQL...

0 comments    table mysql error message
naveenkadian profile image44

Write Errors in MySQL Server Database

MySQL database is comprised of tables, each with typed columns. But these tables are prone to corruption due to several external and internal factors. One of the typical symptoms that a corrupted MySQL table...

0 comments    corruption tables mysql
65

strlen PHP function, view 100 character from txt row from MySQL table

Hello people, I will show you how to view part of text from MySQL table using this PHP code: I searched many times for this function, but the problem that you always get character error as the code can't...

0 comments    strlen php function
naveenkadian profile image56

MySQL Table Corruption Due to Error While Using OPTIMIZE TABLE

MySQL OPTMIZE TABLE command is used to de-fragment a MySQL table and thus reclaim its unused space. You generally use this command when you delete a large part of the particular table or make several changes...

0 comments    table mysql mysql repair
naveenkadian profile image61

‘Duplicate unique key or constraint on write or update’ MySQL Error and Recovery

Storage engines (like MyISAM and InnoDB) that are supported by MySQL work as handlers for its various table types. MySQL tables are components used to relate and store data in its databases. But at times, you...

1 comment    windows recovery table
naveenkadian profile image58

Table Crash Might Cause Database Corruption in MySQL

Each MySQL database is an organized group of table, which store data and information in form of rows and columns. Tables could be added or deleted as per your requirement. But in some situations, the...

0 comments    table mysql error message
naveenkadian profile image57

INSERT … SELECT Can Corrupt MySQL Table on MyISAM

The MySQL INSERT … SELECT command allows you to insert several rows into a table from various tables. But at times, when you kill the command on MyISAM, you observe that the table gets corrupt. Such type of...

1 comment    recovery data table
naveenkadian profile image58

Rectifying Error Message “Unsupported extension used for table” in MySQL database

To take the advantages of the new privileges added in the new version of MySQL database, most of us upgrade our MySQL tables to new version. The utility available for upgradation of MySQL tables is known as...

0 comments    mysql error message mysql repair
working