一個跨平臺的數據庫操作庫文件,可以輕松在linux和windows下進行數據庫讀寫以及其他的操作,支持多種數據庫,代碼包含很多example,初學者很容易上手. OTL 是 Oracle, Odbc and DB2-CLI Template Library 的縮寫,是一個C++編譯中操控關系數據庫的模板庫,它目前幾乎支持所有的當前各種主流數據庫,例如Oracle, MS SQL Server, Sybase, Informix, MySQL, DB2, Interbase / Firebird, PostgreSQL, SQLite, SAP/DB, TimesTen, MS ACCESS等等。OTL中直接操作Oracle主要是通過Oracle提供的OCI接口進行,進行操作DB2數據庫則是通過CLI接口來進行,至于MS的數據庫和其它一些數據庫,則OTL只提供了ODBC來操作的方式。當然Oracle和DB2也可以由OTL間接使用ODBC的方式來進行操縱。 在MS Windows and Unix 平臺下,OTL目前支持的數據庫版本主要有:Oracle 7 (直接使用 OCI7), Oracle 8 (直接使用 OCI8), Oracle 8i (直接使用OCI8i), Oracle 9i (直接使用OCI9i), Oracle 10g (直接使用OCI10g), DB2 (直接使用DB2 CLI), ODBC 3.x ,ODBC 2.5。
標簽: example windows Oracle linux
上傳時間: 2017-01-18
上傳用戶:蟲蟲蟲蟲蟲蟲
程序名稱:圖書管理系統 附 件:源代碼 說 明:主要用ADO控件,其中Library.mdb 為數據庫文件,config.ini為初始化配置文件, 為保證程序正常運行請保持文件的完整和路徑。 由于時間關系,代碼沒有做太多的優化,也沒 有做太詳細的測試,哪位朋友有可改進或者批 評指正的意見請和我聯系,不勝感激。
上傳時間: 2013-12-17
上傳用戶:onewq
The RTL-ARM User s Guide contains detailed information about the components of the RTL-ARM Real-Time Library
標簽: RTL-ARM information components Real-Time
上傳時間: 2013-12-13
上傳用戶:jackgao
A Flash Player with ActionScript support. Write in C and C++. It have two part, one is Player and another is ActionScript Library. Runs on Linux and *BSD. It s very rough now, it have long way to go.
標簽: Player ActionScript and support
上傳時間: 2013-12-24
上傳用戶:時代電子小智
用戶元件庫的建立 如果要在名為design_component的庫中建立一個叫nfet的component,使它有ivpcell view并且有CDF參數,具體的操作方法如下: a) 建立一個名叫nfet的component。在Library Manager中一般都會有一個叫sample的庫,在該庫的下面可以找到nfet元件,可以看到它有ivpcell view. 把它copy到一個新庫中。 b) 這些新的庫是沒有CDF參數的,而在analogLib庫中的nmos4元件有這些參數。要把相應的參數copy到剛才新建的庫中。在CIW窗口中,Tools菜單下選擇CDF…Copy,彈出一個窗口。如下
標簽: design_component component nfet 用戶
上傳時間: 2013-12-19
上傳用戶:a6697238
C++ 標準程序庫提供一組通用類別(classes)和接口(interfaces),可大幅擴充 C++ 核心語言。由于程序庫本身并不容易,為了完整運用其組件并從其強大的威力中獲得幫助,你需要一份完善的資源,而非一份僅僅陳列類和函數的普通文檔?!禩he C++ Standard Library》不僅對每一個程序庫組件提供范圍廣泛的說明,也對繁雜的感念提供清楚明亮的解釋,并描述高效運用這些組件時需要的實際編程細節,提出一個又一個的范例程序。這本包含最新資料的完整書籍,反映出被 ANSI/ISO C++ 語言標準規格書納入的 C++ 標準程序庫的結構。更明確地說,本書將焦點放在標準模板庫(Standard Template Library)身上,檢驗其中的容器(containers)、迭代器(iterators)、仿函數(functors)和算法(algorithms)。你還可以找到特殊容器、字符串(strings)、數值類別、國際化議題、IOStream。每一個組件都有深刻的呈現,包括其介紹、設計、運用實例、細部解說、陷阱、意想不到的危險,以及相關類別和函數的確切標記(signature)和定義。一份見解深刻的基礎概念介紹和一個程序庫綜合鳥瞰,會對新手帶來快速的提升。
標簽: interfaces classes 標準 接口
上傳時間: 2017-02-10
上傳用戶:天涯
游戲開發數據結構Data Structures for Game Programmers The Goodies Directory contains all sorts of stuff. For example, there are the four 3rd-Party libraries used in the book, SDL, SDL_TTF, FreeType (which SDL_TTF uses), and STLPort, which is one implementation of the Standard Template Library. Also, there are four articles on trees and SDL in the articles directory. These supplement the material in the book.
標簽: Programmers Structures Directory contains
上傳時間: 2017-02-12
上傳用戶:qoovoop
This taglib contains tags used to create struts input forms, as well as other tags generally useful in the creation of HTML-based user interfaces. Many of the tags in this tag Library will throw a JspException at runtime when they are utilized incorrectly (such as when you specify an invalid combination of tag attributes). JSP allows you to declare an "error page" in the <%@ page %> directive. If you wish to process the actual exception that caused the problem, it is passed to the error page as a request attribute under key org.apache.struts.action.EXCEPTION.
標簽: tags generally contains taglib
上傳時間: 2017-02-21
上傳用戶:dianxin61
This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe [1]. Trie is a kind of digital search tree, an efficient indexing method with O(1) time complexity for searching. Comparably as efficient as hashing, trie also provides flexibility on incremental matching and key spelling manipulation. This makes it ideal for lexical analyzers, as well as spelling dictionaries. See the details of the implementation at [2]: http://linux.thai.net/~thep/datrie/datrie.html Historically, this was first implemented as C++ classes in a Library called midatrie [2], but later simplified and rewritten from scratch in C.
標簽: implementation double-array representing structure
上傳時間: 2013-12-10
上傳用戶:shinesyh
C++標準庫源代碼_C++ STL Source Code 請不要修改任何文件,如果您修改某些文件,會導致庫內部的不統一。請參考The C++ Programming Language及 The C++ Standard Library。
上傳時間: 2014-01-11
上傳用戶:songrui