Basic(基本的)
Data Source=filename;Version=3;
Using UTF16(使用UTF16编码)
Data Source=filename;Version=3;UseUTF16Encoding=True;
With password(带密码的)
Data Source=filename;Version=3;Password=myPassword;
Using the pre 3.3x database format(使用3.3x前数据库格式)
Data Source=filename;Version=3;Legacy Format=True;
Read only connection(只读连接)
Data Source=filename;Version=3;Read Only=True;
With connection pooling(设置连接池)
Data Source=filename;Version=3;Pooling=False;Max Pool Size=100;
Using DateTime.Ticks as datetime format()
Data Source=filename;Version=3;DateTimeFormat=Ticks;
Store GUID as text(把Guid作为文本存储,默认是Binary)
Data Source=filename;Version=3;BinaryGUID=False;
如果把Guid作为文本存储需要更多的存储空间
Specify cache size(指定Cache大小)
Data Source=filename;Version=3;Cache Size=2000;
Cache Size 单位是字节
Specify page size(指定页大小)
Data Source=filename;Version=3;Page Size=1024;
Page Size 单位是字节
相关文章
- 01-28【Python】bytes和hex字符串之间的相互转换。
- 01-28LeetCode:151_Reverse Words in a String | 字符串中单词的逆反 | Medium
- 01-28远程连接的声卡问题
- 01-28jenkins踩过的坑之--节点连接
- 01-28百万长连接并发的限制因素
- 01-28接收键盘输入的字符串,用FileWirter类将字符串写入文件,用FileReader类读出文件内容显示在屏幕上
- 01-28python3【基础】-字符串 常用的方法
- 01-28151. 翻转字符串里的单词
- 01-28151. 翻转字符串里的单词
- 01-28LeetCode 151:给定一个字符串,逐个翻转字符串中的每个单词 Reverse Words in a String