2016-01-16 3 views
3

Это мой код dbhelper. Я хочу спросить, можно ли поддерживать несколько языков в этой базе данных? Нужно ли использовать google translate api или я должен создать другую базу данных для другого языка?Способ изменения поддержки базы данных для поддержки нескольких языков?

private DatabaseHelper dbHelper; 
private SQLiteDatabase db; 

private static final String K_ID = "ID"; 
private static final String K_NAME = "NAME"; 
private static final String K_BEN = "BENEFIT"; 
private static final String TABLE = "PLANT"; 

private static class DatabaseHelper extends SQLiteOpenHelper { 
    DatabaseHelper(Context context) { 
     super(context, "DBPLANT", null, 1); 
    } 

    public void onCreate(SQLiteDatabase db) { 

     String sql = "CREATE TABLE " + TABLE + " (" + K_ID 
       + " INTEGER PRIMARY KEY ," + K_NAME + " TEXT , " + K_BEN 
       + " TEXT);"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('ALOE (Aloe Vera)','This plant has hundreds of uses, the most popular being its ability to alleviate the pain of burns and to speed their healing. Immediately immerse the burn in cold water or apply ice until the heat subsides, then generously apply the aloeAloe may also be applied to any cut or skin abrasion, and onto skin eruptions, remarkably speeding healing. To relieve the pain and itching of hemorrhoids, carve out a suppository sized chunk of the inner leaf gel and insert into the rectum.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('GARLIC (Allium sativum)','Best known for its antibiotic effect, garlic bulbs or the milder garlic greens can be eaten raw at the onset of a cold or flu. Garlic oil is effectively used for ear infections. It is easily made by finely chopping enough fresh organic garlic bulbs to fill a jelly jar, and covering them with organic olive oil.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('GINGER (Zinziber officiale)','Ginger has a carminative effect, which means that it will help relieve digestive problems which result in gas formation. It is also a diaphoretic, used both as a tea and added to a soaking bath to stimulate sweating and reduce fevers.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('COCONUT','White meat and water from the cavity are used for heart conditions, dysentery, fever, pain, and digestive and bladder problems, to quench thirst and as an aphrodisiac. To treat diarrhea, meat from young fruits is mixed with other ingredients and rubbed onto the stomach. Oil prepared from boiling coconut milk is thought of as antiseptic and soothing and so is smoothed onto the skin to treat burns, ringworm and itching.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Carallia Brachiata','The bark was extracted with petroleum ether, ethyl acetate and methanol successively. All the extracts were screened for wound healing activity by excision and incision models in Wistar rats. The ethyl acetate and methanol extracts were found to possess significant wound healing activity. The extracts revealed the presence of sterols or triterpenoids, flavonoids, phenols, tannins, carbohydrates, fixed oils and fats.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Ficus Hispida','The fruits are bitter, refrigerant, astringent, acrid, anti-dysenteric, anti-inflammatory, depurative, vulnerary, haemostatic and galactagogue. They are useful in ulcere, leucoderma, psoriasis, anaemia, haemorrhoids, jaundice, epistaxis, stomatorrhagia, inflammations, intermittent fever and vitiated conditions of pitta.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Leea Indica','A decoction of the root is given in colic, is cooling and relieves thirst. In Goa, the root is much used in diarrheal and chronic dysentery. The roasted leaves are applied to the head in vertigo. The juice of the young leaves is a digestive. Plant pacifies vitiated pitta, diarrhea, dysentery, colic, ulcers, skin diseases, and vertigo.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Mesua Ferrea','Flowers are acrid, anodyne, digestive, constipating, and stomachic. They are used in treating asthma, leprosy, cough, fever, vomiting and impotency. The seed oil pacifies vata, and also good for skin diseases and rheumatism');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Trema Orientalis','It has been used for medicinal purposes including the treatment of respiratory, inflammatory, and helminthic diseases. Almost every part of the plant is used as medicine in various parts of Africa.');"; 
     db.execSQL(sql); 
     sql = "INSERT INTO " 
       + TABLE 
       + " (" 
       + K_NAME 
       + "," 
       + K_BEN 
       + ") VALUES('Murraya Paniculata','The decoction of the leaves can be used as a gargle to treat toothache. The leaves are frequently used to treat pain due to scalding. This decoction can be given orally to treat body aches, as a tonic, and for expelling tape worm');"; 
     db.execSQL(sql); 
    } 

    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 
     db.execSQL("DROP TABLE IF EXISTS " + TABLE); 
     onCreate(db); 
    } 
} 

/** 
* Upgrade database 
*/ 
public void Reset() { 
    dbHelper.onUpgrade(this.db, 1, 1); 
} 

/** 
* Constructor 
* 
* @param ctx 
*   the activity context 
*/ 
public DBHelper(Context ctx) { 
    dbHelper = new DatabaseHelper(ctx); 
} 

/** 
* Open database connection 
* 
* @return the database connection 
* @throws SQLException 
*/ 
public DBHelper open() throws SQLException { 
    db = dbHelper.getWritableDatabase(); 
    return this; 
} 

/** 
* Close database connection 
*/ 
public void close() { 
    dbHelper.close(); 
} 

public boolean createEntry(String name, String benefit) { 
    ContentValues cv = new ContentValues(); 
    cv.put(K_NAME, name); 
    cv.put(K_BEN, benefit); 
    return db.insert(TABLE, null, cv) != -1; 
} 

public boolean updateEntry(String name, String benefit, String id) { 
    ContentValues cv = new ContentValues(); 
    cv.put(K_NAME, name); 
    cv.put(K_BEN, benefit); 
    return db.update(TABLE, cv, K_ID + " = ?", new String[] { id }) > 0; 
} 

public PlantList getList() { 
    PlantList plants = new PlantList(); 
    Cursor cur = db.rawQuery("SELECT " + K_ID + " ," + K_NAME + " FROM " 
      + TABLE, null); 

    if (cur.moveToFirst()) { 
     do { 
      plants.addData(cur.getString(cur.getColumnIndex(K_ID)), 
        cur.getString(cur.getColumnIndex(K_NAME))); 
     } while (cur.moveToNext()); 
    } 
    cur.close(); 
    return plants; 
} 

public PlantList getQuery(String query) { //search data 
    PlantList plants = new PlantList(); 
    Cursor cur = db.rawQuery("SELECT " + K_ID + " ," + K_NAME + " FROM " 
      + TABLE + " WHERE " + K_NAME + " LIKE '%" + query + "%'", null); 

    if (cur.moveToFirst()) { 
     do { 
      plants.addData(cur.getString(cur.getColumnIndex(K_ID)), 
        cur.getString(cur.getColumnIndex(K_NAME))); 
     } while (cur.moveToNext()); 
    } 
    cur.close(); 
    return plants; 
} 

public String[] getDetail(String id) { 
    String data[] = new String[2]; 
    Cursor cur = db.query(TABLE, new String[] { K_NAME, K_BEN }, K_ID + "=" 
      + id, null, null, null, null); 

    if (cur.moveToFirst()) { 
     data[0] = cur.getString(cur.getColumnIndex(K_NAME)); 
     data[1] = cur.getString(cur.getColumnIndex(K_BEN)); 
    } 
    cur.close(); 
    return data; 
} 

public String getName(String id) { 
    String name = null; 
    Cursor cur = db.query(TABLE, new String[] { K_NAME }, K_ID + "=" + id, 
      null, null, null, null); 

    if (cur.moveToFirst()) { 
     name = cur.getString(cur.getColumnIndex(K_NAME)); 
    } 
    cur.close(); 
    return name; 
} 

public boolean deleteEntry(String id) { 
    return db.delete(TABLE, K_ID + " = ?", new String[] { id }) > 0; 
} 

}

ответ

3

Да, вы можете использовать одну и ту же базу данных. SQLite всегда сохраняет текстовые данные как Unicode, используя кодировку Unicode, указанную при создании базы данных. Сам драйвер базы данных позаботится о возврате данных в виде строки Юникода в кодировке, используемой вашим языком/платформой.

Внутренний sqlite кодирует все строки либо в UTF-8, либо в UTF-16 (имеется опция для каждой базы данных), но поскольку он всегда преобразует их по мере необходимости (для того, чтобы сравнивать или с/из java.lang .String в API), вам даже не нужно заботиться.

В таблице базы данных вы можете добавлять разные столбцы для языковых строк для разных языков и получать данные только из этого конкретного столбца.

В своем приложении вы можете предоставить пользователю возможность изменить язык. В это время вы можете изменить столбец в соответствии с выбранным языком и добавить/редактировать действие только в этом столбце.

+0

ok. то мой следующий вопрос будет заключаться в том, как я напишу код для изменения языка в базе данных. Для моих приложений пользователь может добавлять/редактировать базу данных, если приложение находится во время выполнения, когда пользователь добавляет новые данные , я не знаю, как получить новые данные, чтобы перевести их на другой язык. –

+0

Отвечает ли мой обновленный ответ на ваш вопрос ??? –

+0

вы имеете в виду, что если один пользовательский ключ в данных «En», который является английским словом, тогда столбец (английский) будет собирать данные, а пользователь может видеть его только в столбце (английском)? Если пользователь изменит значение «En», язык на другой язык, пользователь не может видеть данные «En» в другом столбце языка? –

1

Вместо того чтобы создавать отдельную базу данных, вы, вероятно, лучше добавить еще один столбец в таблице с указанием языка и просто хранить локализованные строки в одной таблице.

+0

У вас есть пример для этого? –

+0

Некоторые полезные обсуждения здесь: http://stackoverflow.com/questions/316780/schema-for-a-multilanguage-database –

Смежные вопросы