⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cost.txt

📁 LiteSQL is a C++ library that integrates C++ objects tightly to relational database and thus provide
💻 TXT
字号:
/* LiteSQL - Documentation - Cost of Using LiteSQL *  * By Tero Laitinen  *  * See LICENSE for copyright information. *//* \file cost.txt    Manual *//** \page cost Cost of Using LiteSQL\section memoryoverhead Memory OverheadExtra variables in each Persistent object instance:- bool modified - flag in each field- bool oldID - flag (used to track id - changes)- bool inDatabase - flag- Database* - pointer\section performanceoverhead Performance Overhead- one INSERT-SQL statement is required per inherited Persistent-class (deep class inheritance hierarchies cost)- selection of objects needs joins \section codesizeoverhead Code Size OverheadAs demonstrated in \ref implementation, code generator(litesql-gen) generates a lot of code. In addition to that, a part of that codeuses templates which will produce even more code. This is rarely a problem but worth to note when memory is tight.*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -