mirror of
				https://github.com/gnh1201/welsonjs.git
				synced 2025-10-31 12:57:31 +00:00 
			
		
		
		
	Add the package ManagedEsent (microsoft/ManagedEsent@d358c07), and WelsonJS.Esent
		
			
				
	
	
		
			30 lines
		
	
	
		
			732 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			732 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| //-----------------------------------------------------------------------
 | |
| // <copyright file="jet_cp.cs" company="Microsoft Corporation">
 | |
| //     Copyright (c) Microsoft Corporation.
 | |
| // </copyright>
 | |
| //-----------------------------------------------------------------------
 | |
| 
 | |
| namespace Microsoft.Isam.Esent.Interop
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Codepage for an ESENT column.
 | |
|     /// </summary>
 | |
|     public enum JET_CP
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Code page for non-text columns.
 | |
|         /// </summary>
 | |
|         None = 0,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Unicode encoding.
 | |
|         /// </summary>
 | |
|         Unicode = 1200,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// ASCII encoding.
 | |
|         /// </summary>
 | |
|         ASCII = 1252,
 | |
|     }
 | |
| }
 |