473,396 Members | 1,933 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Recommend a Database...MYSQL..

Hi
My team has been assigned the work to manage the translation of Front
Office Products of our company. The goal is to translate all the
strings in different languages like French, Spanish, Italian etc. In
order to automate the update/delete/addition/retieval of strings, we
plan to use a database. Each strings will identified by unique ID and
we plan to keep the translations in the same database. Not more than
25 users will have access to the database.
Approximate number of strings are 5000. We are using Windows2000
platform.
Could you please suggest me the following:
1. Which database we should go for? MYSQL/MS-Access??
2. How is the compatibility of MYSQL with Windows?
3. About the database design, could you suggest me if it will be
better to build different table for different languages or store the
translations in the same table?

Your suggestions are valuable to us. Thanks in advance
Navin
Jul 19 '05 #1
4 2164
MySQL for windows works great I would do something like the following\

create table transstrings (
id int(11) not null auto_increment,
langtype int(11) not null,
stringdata char(200).
primary key (id),
index index_langtype (langtype),
index index_string (stringdata))

you can even have the followin
create table langs (
id int(11) not null auto_increment,
lang char(200).
primary key (id),
index index_langtype (lang))

Too easy and will be heaps faster the MS access will ever be.

Thanks

Aaron

"Navin Kumar" <it******@yahoo.com> wrote in message
news:89*************************@posting.google.co m...
Hi
My team has been assigned the work to manage the translation of Front
Office Products of our company. The goal is to translate all the
strings in different languages like French, Spanish, Italian etc. In
order to automate the update/delete/addition/retieval of strings, we
plan to use a database. Each strings will identified by unique ID and
we plan to keep the translations in the same database. Not more than
25 users will have access to the database.
Approximate number of strings are 5000. We are using Windows2000
platform.
Could you please suggest me the following:
1. Which database we should go for? MYSQL/MS-Access??
2. How is the compatibility of MYSQL with Windows?
3. About the database design, could you suggest me if it will be
better to build different table for different languages or store the
translations in the same table?

Your suggestions are valuable to us. Thanks in advance
Navin

Jul 19 '05 #2
MySQL for windows works great I would do something like the following\

create table transstrings (
id int(11) not null auto_increment,
langtype int(11) not null,
stringdata char(200).
primary key (id),
index index_langtype (langtype),
index index_string (stringdata))

you can even have the followin
create table langs (
id int(11) not null auto_increment,
lang char(200).
primary key (id),
index index_langtype (lang))

Too easy and will be heaps faster the MS access will ever be.

Thanks

Aaron

"Navin Kumar" <it******@yahoo.com> wrote in message
news:89*************************@posting.google.co m...
Hi
My team has been assigned the work to manage the translation of Front
Office Products of our company. The goal is to translate all the
strings in different languages like French, Spanish, Italian etc. In
order to automate the update/delete/addition/retieval of strings, we
plan to use a database. Each strings will identified by unique ID and
we plan to keep the translations in the same database. Not more than
25 users will have access to the database.
Approximate number of strings are 5000. We are using Windows2000
platform.
Could you please suggest me the following:
1. Which database we should go for? MYSQL/MS-Access??
2. How is the compatibility of MYSQL with Windows?
3. About the database design, could you suggest me if it will be
better to build different table for different languages or store the
translations in the same table?

Your suggestions are valuable to us. Thanks in advance
Navin

Jul 19 '05 #3
Sounds like a similar approach for the intl tool kit from Steven Black .
So much very like it, in fact - that I recommend you go that route .
see http://stevenblack.com/ and purchase his toolkit .
HAVE FUN ! mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Navin Kumar" <it******@yahoo.com> wrote in message
news:89*************************@posting.google.co m...
Hi
My team has been assigned the work to manage the translation of Front
Office Products of our company. The goal is to translate all the
strings in different languages like French, Spanish, Italian etc. In
order to automate the update/delete/addition/retieval of strings, we
plan to use a database. Each strings will identified by unique ID and
we plan to keep the translations in the same database. Not more than
25 users will have access to the database.
Approximate number of strings are 5000. We are using Windows2000
platform.
Could you please suggest me the following:
1. Which database we should go for? MYSQL/MS-Access??
2. How is the compatibility of MYSQL with Windows?
3. About the database design, could you suggest me if it will be
better to build different table for different languages or store the
translations in the same table?

Your suggestions are valuable to us. Thanks in advance
Navin

Jul 19 '05 #4
Sounds like a similar approach for the intl tool kit from Steven Black .
So much very like it, in fact - that I recommend you go that route .
see http://stevenblack.com/ and purchase his toolkit .
HAVE FUN ! mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Navin Kumar" <it******@yahoo.com> wrote in message
news:89*************************@posting.google.co m...
Hi
My team has been assigned the work to manage the translation of Front
Office Products of our company. The goal is to translate all the
strings in different languages like French, Spanish, Italian etc. In
order to automate the update/delete/addition/retieval of strings, we
plan to use a database. Each strings will identified by unique ID and
we plan to keep the translations in the same database. Not more than
25 users will have access to the database.
Approximate number of strings are 5000. We are using Windows2000
platform.
Could you please suggest me the following:
1. Which database we should go for? MYSQL/MS-Access??
2. How is the compatibility of MYSQL with Windows?
3. About the database design, could you suggest me if it will be
better to build different table for different languages or store the
translations in the same table?

Your suggestions are valuable to us. Thanks in advance
Navin

Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: John | last post by:
Hello. If I want to set up my first database and start using it in Dreamweaver what do I need to do? The book I'm working on has a CD with the database on. It is telling me to put it in the...
0
by: Navin Kumar | last post by:
Hi My team has been assigned the work to manage the translation of Front Office Products of our company. The goal is to translate all the strings in different languages like French, Spanish,...
8
by: John | last post by:
Hello. I am currently working through a book on Dreamweaver and using PHP. I am having a little trouble with setting up the database though. I have php 4.2.3 and MySQL 4.0.20a. I am running...
2
by: Saqib Ali | last post by:
I installed mySQL and have it running.... but I think I made a mistake somewhere along the line...... I believe I did follow the instructions that were provided with the distribution at:...
14
by: mistral | last post by:
Need php script to create mySQL database programmatically; since hosting configuration may not allow create database from script, script also need eliminate/rewrite all restrictions in appropriate...
2
by: Thomas Ploch | last post by:
Hello folks, I am currently developing an open source Event Managment software (events in real-life, like concerts, exhibitions etc. :-) ) using wx for the GUI, and I need an Object database....
4
Coldfire
by: Coldfire | last post by:
Hello folks! I need recommendation for Database for a Retail Point of Sale Application either from SQL Server or MySQL. I know SQL is expensive than MySql but performance wise MySQL has upgraded...
3
by: jonny | last post by:
Please recommend a Web Hosting Service that supports ASP.NET and SQL server. I am new at this and just signed up with Yahoo before I new any better. It appears that yahoo does not support ASP.NET...
1
by: amygrant1701 | last post by:
Hi, I've done this before so I don't see what I could doing wrong here. I'm running mysql 5x on freebsd. I'm using the default data directory of "/var/db/mysql" In there I have several dozen...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.