Translate city names and country [closed] - mysql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I Have mysql db with country e cities of the world; it are in english but my site is multilanguage (italian, french, russian ecc) - how can I do to translate the various locality?

You could use http://www.geonames.org. There all cities in the world, with translations.
UPDATED:
You could use geonames web service, for example translation of Moscow. Of course you are to parse this XML data :)

Related

For search purposes: HTML files or store content in database? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it faster to search your web page content if the content is stored in html files or in a database like SQL?
depends on how you want to search through it. I would prefer to store it into a database and implement full-text-search.

does anyone know what encryption is this? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Does anyone know what type of encryption is this:
zlnL/JLk3dtHQiKqHEpxz+Y2Y6ueKi1soF5scb1BYqpAkeBMEKsCnMB9LA1BsM+rKaOZMDBxpzJ56HXuRrQFDA==
Or a method to find out what encryption is used.
The line is taken out from a mysql db and i wanna know what contains.
Thank you in advance.
That is a Base64 encoding. You can see it on the last two == that is typically for that encoding.

Natural Language To SQl [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
is it possible to create a english to SQL app using Part of Speech Tagging. or else please suggest some efficient ways to do this app
I'm not exactly sure what you want to do, but...
There is "FCO-IM (Fully Communication Oriented Information Modeling)". It is relatively unknown, but it allows for "english to sql".
For example, you'd have code such as
There is a person with the name Saman;
Person with name Saman has last name Weerasinghe;
There is a Stackoverflow question with id 8062888;
Person with the name Saman asked Stackoverflow question with id 8062888;
Then you can define the relationships and multiplicity, and generate the tables for your data.

Best Way To Store Roster In SQL Database [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm working on a roster system for my workplace and was wondering what the best way of storing roster information in the database would be i.e there are staff members already in the database, and every staff member would have roster information for each day that there is a shift rostered to them - similar to findmyshift.com.
You haven't really given us enough information to go on. However. Barry Williams's library of free data models has a simple model for a Nurses' Roster, which you could adapt for your needs. Find it here.

An example on how to convert this data format to JSON? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can someone provide me an example on how to convert this data format to JSON?
#Scsi_test
(iotest)
scsi
dkdkdkdkdkdkddk
dkdkdkdkdkkdkdk
dkdkdkdkkdkdkdk
Well, you haven't given us any clues at all what the data format is.
So based on what I see in your question, just 6 rows of data, I would suggest:
{rows:{row1:'#Scsi_test',row2:'(iotest)',row3:'scsi',row4:'dkdkdkdkdkdkddk',row5:'dkdkdkdkdkdkddk',row6:'dkdkdkdkdkdkddk'}}