Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When I create paradox db file, the file is created with default codepage 437 (OEM United States). But I need 1252 (Cyrillic (Windows)) codepage.
Is it possible to change the codepage or is it possible to create one with different codepage?

I use .Net OleDB provider to work with Paradox. Code is below:

OleDbConnection ole_conn = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Paradox 7.x;Data Source=" + FileName);
ole_conn.Open();

OleDbCommand cmd = new OleDbCommand("CREATE TABLE testdb.DB (ID INTEGER, FULLNAME VARCHAR(50));", ole_conn);
cmd.ExecuteNonQuery();
Posted
Updated 26-Dec-14 7:16am
v2
Comments
Richard MacCutchan 26-Dec-14 11:21am    
WhAt does any of this have to do with code pages.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900