资料
  • 资料
  • 专题
AccessingMSSQLServerCEv1.0/v2.0withouttheADOobject
推荐星级:
时间:2019-12-23
大小:43.11KB
阅读数:175
上传用户:二不过三
查看他发布的资源
下载次数
0
所需E币
3
ebi
新用户注册即送 300 E币
更多E币赚取方法,请查看
close
资料介绍
I'm sure for those who are going to implement or already implemented MS SQL Server CE v1.0/2.0 have used the free tool (isqlw_wce.exe) from Microsoft and always have a big question mark in the mind about how to write such an application right?So, this might be the right article for those who intend to find out more about this. At the end of this article, you will manage to access the MS SQL Server CE database which you have installed in your PocketPC device with your own valuable information and made your application more powerful and towards the enterprise level. :)Why do we need MS SQL Server CE as compared to CD database? Because MS SQL Server CE offers a better performance and supports the SQL DDM/DDL that we are all familiar all the time. Which means, it will speed up our application/product development cycle.BackgroundA minimum knowledge of SQL DDM and DDL is a must in order to utilize the various ready made functions. Because you require to write your own SQL statement to create your table, add/update/delete records from any table.Using the codeBefore you start looking at the code, you need to remember that MS SQL Server CE only supports single connection to any database at anytime.When you look into the SqlSvrCE.cpp/.h you will get all the ready made functions that you eventually will call from your own WIN32API or MFC application and that is up to your choice.Before you start downloading the sample code, let's have a look on what function you can have in this free source.// Create a new SQL Server CE database provider.HRESULT CreateSqlSvrCeProvider (void);// Create a new SQL Server CE database session right// after successful connect to the pass in database// name (*.sdf) in fullpath.HRESULT CreateDBSession (void);// Retrieve the last known OLE DB error message, due to// error occur through out the database access process.HRESULT GetErrorMessage (LPTSTR lpszBuffer, int MaxBuffer);// Connect the SQL Server CE database with reference to// the pass in database name (*.sdf) in fullpath.HRESULT ConnectDB (LPTSTR lpszDBName);// Disconnect from the current open SQL Server CE database// with reference to the pass in database name (*.sdf) in// fullpath under the CreateDB/ConnectDB function.HRESULT DisconnectDB (LPTSTR lpszDBName);// Create the SQL Server CE database with reference to// the pass in database name (*.sdf) in fullpath.HRESULT CreateDB (LPTSTR lpszDBName);// Delete the SQL Server CE database with reference to// the pass in database name (*.sdf) in fullpath.HRESULT DeleteDB (LPTSTR lpszDBName);// Compact the SQL Server CE database with reference to// the pass in database name (*.sdf) in fullpath.HRESULT CompactDB (LPTSTR lpszDBName);// Create new table with reference to// the pass in table name and first column information// DUE TO SQL SERVER CE 2.0 MUST HAVE AT LEAST 1// COLUMN IN THE CREATED TABLE.HRESULT CreateTable (LPTABLECOLUMNINFO lptci);// Delete the existing table with reference to// the pass in table name..HRESULT DropTable (LPTSTR lpszTableName);// Create new column with reference to// the pass in information in TABLECOLUMNINFO structure.HRESULT CreateColumn (LPTABLECOLUMNINFO lptci);// Drop the existing column with reference to// the pass in information in TABLECOLUMNINFO structure.HRESULT DropColumn (LPTABLECOLUMNINFO lptci); // Create new index with reference to// the pass in information in TABLEINDEXINFO structure.HRESULT CreateIndex (LPTABLEINDEXINFO lptii);// Drop the existing index with reference to// the pass in information in TABLEINDEXINFO structure.HRESULT DropIndex (LPTABLEINDEXINFO lptii);// Execute the SQL Statement with does not require to// return a RowSet object.// EXAMPLE:// SELECT, DELETE, CREATE TABLE, DROP TABLE, INSERT INTO etc...HRESULT ExecuteSQL (LPTSTR lpszQuery);// Load the records into a RowSet object with reference// to the pass in SQL statement.HRESULT GetRowset (LPTSTR lpszQuery);// Process the Rowset object created by the GetRowset function.HRESULT ProcessRowset (IRowset *pRowset);There is a total of eleven functions as shown above that you require to remember and call through out your database application.But be aware that the ProcessRowset is fully customized to fit the attached sample application requirement, which will display all the retrieved records and column headers into the provided listview control. Therefore, you need to modify the ProcessRowset function or even write your own ProcessRowset function to interpret those data you have read from the MS SQL Server CE database.All the necessary note is available in the source file and with this note, I'm sure it will make your life easy when you start to modify or write your own ProcessRowset function.Therefore, to use the above function is pretty straight forward. All you need is just call the relevant function with the correct corresponding argument.For instance, you wish to create a database in \Windows folder with the name as MyDb.sdf. All you need is just call the CreateDB as below:_tcscpy(szDBName, TEXT("\\windows\\MyDb.sdf"));hr = CreateDB(szDBName);// Validationif (!FAILED(hr))// Display result message text.MessageBox(hWnd, TEXT("Database successful created."), TEXT("Infor"), MB_OK);else{// Get OLE DB error messageGetErrorMessage(szErrMessage, wcslen(szErrMessage));//if (E_OUTOFMEMORY == hr){// Compose result messagewsprintf(szErrMessage,TEXT("(0x%x) Out of memory!"),hr);}// Display result message text.MessageBox(hWnd, szErrMessage, TEXT("Error"), MB_ICONSTOP | MB_OK);}You may notice that the sample program user interface will not fit in the MS PocktePC (240x320) screen. This is because the sample application is developed base on Windows CE .NET platform and all I did is just create a new PocketPC application and direct copy all the relevant cpp/h files. Hope you don't mind about that.Last but not least, I wish you enjoy the sample code and hope it will help you in any one of your application development cycles. UpdateA total of 6 new functions is implemented based on the previous source file, and these 6 functions are:CreateTable DropTable CreateColumn DropColumn CreateIndex DropIndex These 6 functions, will give you an easy way to manage your database with writing the complex SQL-92 command……
版权说明:本资料由用户提供并上传,仅用于学习交流;若内容存在侵权,请进行举报,或 联系我们 删除。
PARTNER CONTENT
相关评论 (下载后评价送E币 我要评论)
没有更多评论了
  • 可能感兴趣
  • 关注本资料的网友还下载了
  • 技术白皮书