SQL vertaling oscmax
alleen krijg ik een fout melding. kan iemand mij helpen met het vinden van de oplossing?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<PRE># Database : `standaard osc 2`
# Maak een backup van uw database voordat u deze update uitvoert!!!!</PRE>
<PRE># Gegevens worden uitgevoerd voor tabel `configuration`
#</PRE>
<PRE>UPDATE configuration SET configuration_title = 'Winkelnaam', configuration_description='De naam van de winkel' WHERE configuration_key = "STORE_NAME";
UPDATE configuration SET configuration_title = 'Eigenaar', configuration_description='De naam van de winkeleigenaar' WHERE configuration_key = "STORE_OWNER";
UPDATE configuration SET configuration_title = 'E-mailadres',configuration_description='Het e-mailadres van de eigenaar' WHERE configuration_key = "STORE_OWNER_EMAIL_ADDRESS";
UPDATE configuration SET configuration_title = 'E-mail van',configuration_description='Het e-mailadres dat gebruikt wordt voor verzending' WHERE configuration_key = "EMAIL_FROM";
// Beetje onzinnig veel overbodige regels verwijderd. SanThe.
UPDATE configuration SET configuration_title = 'Calculate Tax', configuration_description='Re-calculate Tax on discounted amount.' WHERE configuration_key = &q
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<PRE># Database : `standaard osc 2`
# Maak een backup van uw database voordat u deze update uitvoert!!!!</PRE>
<PRE># Gegevens worden uitgevoerd voor tabel `configuration`
#</PRE>
<PRE>UPDATE configuration SET configuration_title = 'Winkelnaam', configuration_description='De naam van de winkel' WHERE configuration_key = "STORE_NAME";
UPDATE configuration SET configuration_title = 'Eigenaar', configuration_description='De naam van de winkeleigenaar' WHERE configuration_key = "STORE_OWNER";
UPDATE configuration SET configuration_title = 'E-mailadres',configuration_description='Het e-mailadres van de eigenaar' WHERE configuration_key = "STORE_OWNER_EMAIL_ADDRESS";
UPDATE configuration SET configuration_title = 'E-mail van',configuration_description='Het e-mailadres dat gebruikt wordt voor verzending' WHERE configuration_key = "EMAIL_FROM";
// Beetje onzinnig veel overbodige regels verwijderd. SanThe.
UPDATE configuration SET configuration_title = 'Calculate Tax', configuration_description='Re-calculate Tax on discounted amount.' WHERE configuration_key = &q
Gewijzigd op 01/01/1970 01:00:00 door J o
2) Plaats alleen relevante code....
Code (php)
1
UPDATE configuration SET configuration_title = 'Winkelnaam', configuration_description='De naam van de winkel' WHERE configuration_key = "STORE_NAME";
Wanneer jij echt " in je SQL hebt staan om een quote ' aan te geven, gaat dit natuurlijk niet werken. In SQL gebruik je een quote ' om een quote aan te geven en niet een html-entiteit.
Dit zal beter werken:
Code (php)
1
2
3
4
5
6
7
2
3
4
5
6
7
UPDATE
configuration
SET
configuration_title = 'Winkelnaam',
configuration_description='De naam van de winkel'
WHERE
configuration_key = 'STORE_NAME';
configuration
SET
configuration_title = 'Winkelnaam',
configuration_description='De naam van de winkel'
WHERE
configuration_key = 'STORE_NAME';
Ps. Met 10 regels code was de boodschap ook wel overgekomen...
Gewijzigd op 01/01/1970 01:00:00 door Frank -
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
SQL-query:
UPDATE configuration SET configuration_title = 'Artikel omschrijving Basic Advanced Version?',
configuration_description = 'Advanced',
'Basic Features FASTER Advanced Features SLOWER' WHERE configuration_key = 'HTML_AREA_WYSIWYG_BASIC_PD';
MySQL retourneerde: Documentatie
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Basic Features FASTER Advanced Features SLOWER' WHERE configuration_key = 'HTM' at line 1
UPDATE configuration SET configuration_title = 'Artikel omschrijving Basic Advanced Version?',
configuration_description = 'Advanced',
'Basic Features FASTER Advanced Features SLOWER' WHERE configuration_key = 'HTML_AREA_WYSIWYG_BASIC_PD';
MySQL retourneerde: Documentatie
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Basic Features FASTER Advanced Features SLOWER' WHERE configuration_key = 'HTM' at line 1
Ooit wel eens eerder met SQL gewerkt?
ik heb als tamplate de sql file gepakt. van de nl vertaling van osccomerce.
deze sql kan je ook gebruiken voor oscmax. maar was niet compleet omdat er veel aanpassingen en modules in oscmax zitten
heb gister 3 uur geploeterd om alles uit de osomax instal sql te halen. en over te zetten zo dat het vertaald kon worden.
dus wees niet te hard in je oordeel ik geef als eerste toe dat ik een noob ben lol
Ik durf te wedden dat je het dan in no-time voor elkaar hebt.
(ben ook maar een taxi driver)
deze vertaling is ook voor een meisje met het down syndroom. die haar eigen kunst en van haar vrienden wil gaan verkopen. vandaar dat het in het nederlands moet. ze heeft mij gevraagd of ik haar kan helpen. anders had ik er ook nooit aan begonnen.
waarom gebruik je dan niet gewoon osccomerce?
aangezien ik de sql van oscommerce ook kan gebruiken in oscmax.(want eigelijk is het niks meer dan een gepimpte oscommerce versie)
ben ik de oscmax sql gaan vergelijken met de nl versie en heb eigenlijk niets meer gedaan dan extra regels aan maken met de ontbrekende info uit de oscommerce sql
volgens mij heb ik de oplossing gevonden heb de overtollige ' verwijdert nu geeft hij geen foutmelding