MSSQL2005+"ADO.NET" vs SQLITE3.5+"ADO.NET 2.0/3.5 provider"

Jul 16, 2008 01:31

Решил переобуть киоск самообслуживания(пополнение моб. счета, оплата кредита и т.д.) на Sqllite http://www.sqlite.org/. Самому врапер писать было влом, взял "ADO.NET 2.0/3.5 provider" с http://sqlite.phxsoftware.com/. Немного ( Read more... )

programming

Leave a comment

Comments 2

olegy July 16 2008, 05:32:48 UTC
SQLLITE легкий но не быстрый :-) Сейчас на знаю, а а раньше он все типы полей держал в строках.
Интересно было бы попробовать твой тест с MySQL и Firebird

Reply

vdmb July 16 2008, 10:16:03 UTC
Версия 3.5 поддерживает 5 типов:
* NULL. The value is a NULL value.
* INTEGER. The value is a signed integer, stored in 1, 2, 3,
4, 6, or 8 bytes depending on the magnitude of the
value.
* REAL. The value is a floating point value, stored as an 8-
byte IEEE floating point number.
* TEXT. The value is a text string, stored using the database
encoding (UTF-8, UTF-16BE or UTF-16-LE).
* BLOB. The value is a blob of data, stored exactly as it was
input.

Reply


Leave a comment

Up