About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses memory mapped I/O (if available), supports cursors, and can creATe in-memory databases. Release focus: Major feature enhancements Changes: This release comes with many changes and new features. It can manage multiple databases in one file. A new flag (HAM_LOCK_EXCLUSIVE) places an exclusive lock on the file. hamsterdb was ported to Windows CE, and the Solution file for Visual Studio 2005 now supports builds for x64. Several minor bugs were fixed, performance was improved, and small API changes occurred. Pre-built libraries for Windows (32-bit and 64-bit) are available for download. Author: cruppstahl
標簽: C. hamsterdb structure database
上傳時間: 2013-12-11
上傳用戶:LouieWu
This leon3 design is tailored to the Altera NiosII Startix2 Development board, with 16-bit DDR SDRAM and 2 Mbyte of SSRAM. As of this time, the DDR interface only works up to 120 MHz. At 130, DDR data can be read but not written. NOTE: the test bench cannot be simulated with DDR enabled because the Altera pads do not have the correct delay models. * How to program the flash prom with a FPGA programming file 1. creATe a hex file of the programming file with Quartus. 2. Convert it to srecord and adjust the load address: objcopy --adjust-vma=0x800000 output_file.hexout -O srec fpga.srec 3. Program the flash memory using grmon: flash erase 0x800000 0xb00000 flash load fpga.srec
標簽: Development Startix2 tailored Altera
上傳時間: 2014-01-19
上傳用戶:chongcongying
Software Engineering and Computer Games By Rudy Rucker Software Engineering and Computer Games was written with four broad goals: To teach a lively style of object-oriented software engineering. To show how to bring a complete program to the level of a commercial release. To provide a "game engine" framework of linked classes for game development. To help students creATe computer games that are interactive, rapidly executing, and visually beautiful.
標簽: Engineering Software Computer Games
上傳時間: 2015-12-02
上傳用戶:cc1
>項目名稱:電腦電子商務平臺 >1.運行環(huán)境JDK1.6+Oracle10g+Tomcat5.5 >2.開發(fā)工具: MyEclipse Enterprise Workbench 項目名稱:電腦電子商務平臺 1.運行環(huán)境JDK1.6+Oracle10g+Tomcat5.5 2.開發(fā)工具: MyEclipse Enterprise Workbench 5.1.0 GA 3.開發(fā)框架:Struts1.38+Ibertis2.3 4.功能描述: 項目后臺和前臺.后臺是網(wǎng)站管理員對商務網(wǎng)的產(chǎn)品和商品的分類進行管理,客戶的會員管理前臺顯示最新的產(chǎn)品信息,會員注冊登 陸后可以享用購物車和網(wǎng)上訂購產(chǎn)品功能. 使用說明: 1.數(shù)據(jù)庫配置,在ORACLE10的客戶工具運行ddl里的creATe TABLE SHOP.sql創(chuàng)建數(shù)據(jù)庫表 2.用MyEclipse上傳項目到tomcat5.5中,然后啟動tomcat. 3.系統(tǒng)后臺數(shù)據(jù)管URL是http://localhost:8080/omegshop/admin/adminLogin.jsp 默認的用戶名是admin,密碼admin. 4.系統(tǒng)前臺URL是http://localhost:8080/omegshop/index.jsp, 注冊用戶名: member 密碼: member
標簽: Enterprise MyEclipse Workbench gt
上傳時間: 2015-12-07
上傳用戶:onewq
MW6 QRCode ASP.NET web control is 100% consistent with the QRCode specification and extremely easy to use, the package downloadable from our website comes with an ASP.NET sample project which demonstrates exactly how to creATe the QRCode barcode in the ASP.NET environment.
標簽: QRCode specification consistent extremely
上傳時間: 2015-12-10
上傳用戶:whenfly
非常方便的網(wǎng)絡Socket類,開發(fā)網(wǎng)絡程序變得很簡單。 支持自定義的string類。 用法:typedef YSocket<CString> CMySocket //CString也可以用自己的string類,從而可以用來atl等任何地方 CMySocket tpSock //聲明 tpSock.creATe()//建立sock tpSock.Bind()//綁定 tpSock.Listen()//開始偵聽
上傳時間: 2013-12-20
上傳用戶:daguda
This is a collection of m-files I creATed to complete a research project into the DC components of various encoding techniques. Eight of the files creATe random bit sequences that conform to their coding requirements. The others were files I found useful in the scope of the project and supplement the generating m-files.
標簽: collection components complete research
上傳時間: 2015-12-24
上傳用戶:lnnn30
This a small hack I wrote to bypass the "No previous installation!" error of Microchip s C18 Upgrade. Simply run C18Fake and select your C18 installation directory (creATe if necessary) and click Save button. A "fake" file will now be creATed into that directory, and this will fool the Upgrade into thinking you already have a former legit installation. After that you run the C18 Upgrade setup and select the same directory you creATed/selected before. Your installation will now begin installing the full C18 package.
標簽: installation Microchip previous Upgrade
上傳時間: 2014-01-21
上傳用戶:zhuyibin
IBM關于聲音應用開發(fā)的白皮書.This white paper is intended for software developers who want to learn about the tools and techniques available to creATe new voice applications.
標簽: developers intended software white
上傳時間: 2014-01-14
上傳用戶:libenshu01
#if !defined(AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_) #define AFX_GAQUEEN_H__C26AE0A3_F9B4_426F_A324_B460CC7946CB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CGAQueen { public: CGAQueen(int nPopulation,int nIteration,float Mutation,int mChBoard) virtual ~CGAQueen() void Clear() // to clear chess board with 0 value void InitialPopulation() // to creATe the first and initial randompopulation void FillArea(int index) // to fill chess board with desired chromosome int CostFunc(int index) // determine the cost of matrix[index][index] void PopulationSort() // to sort population from the best to the worst void GenerateCrossOverMatrix() // a way to creATe children from parent is CcrossOver void Mating() // to creATe children from parents void Ap
標簽: AFX_GAQUEEN_H INCLUDED defined define
上傳時間: 2015-12-27
上傳用戶:wuyuying