Forum Replies Created
-
AuthorPosts
-
Ritesh
MemberThanks for the report. I have forwarded the issue to my development team and I will revert back soon.
Ritesh
MemberI have forwarded the issue to my development team. I will revert back soon.
Ritesh
MemberI have forwarded the issue to my development team.
Ritesh
MemberCan you just send a mail to [email protected] so that I can add your email address to our beta-testers list?
Ritesh
MemberCurrently, F8 is the solution for you.
Starting with v4.1, SQLyog will have an extra tab in the result window where you will be able to directly edit fields.
Ritesh
MemberThis option is planned for one of the future versions of SQLyog.
Ritesh
MemberFirst BETA of 4.1 is expected at the end of Feb-2005.
4.1 will be a FREE upgrade to existing 4.x Enterprise users (all inline updates of SQLyog are FREE).
Ritesh
MemberActually this feature is planned for v4.1.
Ritesh
MemberThanks for the info.
Ritesh
MemberSorry but currently both the options are not available in SQLyog.
Ritesh
MemberSJA requires a PRIMARY KEY to be defined on the table.
The simplest way to add a PRIMARY KEY to a table would be to add an *autoincrement* column to the table.
Ritesh
MemberCurrently SJA does not generate script(s) that contains the required *data sync* text.
SQLyog's Structure Sync Tool does generate scripts that contains the required *structure sync* text.
Ritesh
MemberSJA requires a PRIMARY KEY to be defined for the table to be synced.
Can you cut-n-paste the error message from sja.log out here?
Ritesh
MemberCan you send me the URL of your SQLyogTunnel.php page?
Is it possible to get temporary access to your MySQL server so that we can work on the problem and fix the bugs (if there are any).
Ritesh
MemberWe are running 4.1.7.
We created two tables – dependents and members to reproduce the error. The create table statements are:
Code:CREATE TABLE `dependents` (
`CDEMSSN` char(9) NOT NULL default '',
`CDECODE` char(1) NOT NULL default '',
`CDELAST` char(15) default NULL,
`CDEFIRST` char(15) default NULL,
PRIMARY KEY (`CDEMSSN`,`CDECODE`),
KEY `CDEMSSN` (`CDEMSSN`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8;and
Code:CREATE TABLE `members` (
`CENMSSN` char(9) NOT NULL default '',
`CENCODE` char(1) default NULL,
`CENLAST` char(15) default NULL,
`CENFIRST` char(15) default NULL,
PRIMARY KEY (`CENMSSN`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8We then created the required FK. The SQL for FK creation as generated by SQLyog is:
Code:alter table `manitest`.`dependents` add foreign key (CDEMSSN) references `members` (CENMSSN) on update no action;The whole process went smoothly without any problems and we were able to create the FK.
Did we miss something?
-
AuthorPosts