Thanks,
With all the complications I went through I dropped the database and created new one without foreign keys that too was part of complication and I stuck to innoDB engine which was another source of troubles.
Thanks
...exists. Please DISCARD the tablespace before IMPORT
Since table already exists I type:
use skullcrashingwords;
select * from melClans;
But I get the following error:
#1146 - Table 'skullcrashingwords.melclans' doesn't exist
Any idea why I'm recieving these contradictory errors ?
Thanks
Thanks,
unnecessary semicooln was illcopied, sorry for that.
Even though your code yielded error message it works !
I use "UNION" alone on tables that have INDEXES attached and it works ! Table with "KEY" column and with no accompanied INDEX "UNION" alone doesn't work but your suggestion made it...
Hello everyone,
Here is code to create table named 'abcd'/
USE skullcrashingwords;
DROP TABLE IF EXISTS abcd;
CREATE TABLE abcd(
ID INT AUTO_INCREMENT,
Name VARCHAR(255) not null collate utf8_unicode_ci,
KEY (ID)
);
INSERT INTO abcd(name)
SELECT 'aaaaa';
When I run this code a new abcd...
I get the following error:
h1>Failed to read configuration file</h1>This usually means there is a syntax error in it, please check any errors shown below.<br /><br /><iframe src="show_config_errors.php" />
Package installed at c:\xampp
Anyone can tell me what is it all about?
Thanka
Hi everyone,
I have a form in "test.php" which I want to process in "test1.php".
test.php is the following:
<!DOCTYPE html>
<html>
<head>
<title>Update Records In MYSQL Database Using PHP</title>
</head>
<body>
<!--connecting to database-->
<table>
<tr>
<th>ID</th>...
Thank you so much Olaf Doschke,
undoubtedly what is my intention is more clear to you the to myself since I'm still searching for how to do it right.
I'll read again both your posts and maybe I'll end up by understanding how to do it :-)
Hi everyone,
Only now I noticed my post has became such nuisance and I'm so sorry it turned out to be such.
I wanted to delete it and didn't find the way to do it maybe becauseof the confusion caused by the code I try to create.
I did ask about "value's" value showing partially but then found...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.