bje98f wrote:
> Error Executing Database Query.
> [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect
syntax near '`'.
There are some ddl differences between MySQL and MS SQL. MS
SQL typically use square brackets, for escape characters, not '`' .
There may be differences in reserved words as well.
> id` INT UNSIGNED NOT NULL AUTO_INCREMENT
> `minipic` BLOB NULL ,
You will also find slight differences in data types. IIRC, MS
SQL does not have native "unsigned" types The MS SQL equivalent of
BLOB is either image or varbinary, depending on sql server version.
As far as keywords go, MS SQL uses "identity" rather than
auto_increment. But they are roughly the same.
Do a search on MySQL to MS SQL migration. It should turn up a
fair number of comparison guides highlighting the differences
between the two databases (syntax, ddl, data types,
etcetera).