请问c怎么连接数据库(任何数据均可)??要用到什么方面的知识(欢迎灌水)(50分)

  • 主题发起人 budianermayi
  • 开始时间
B

budianermayi

Unregistered / Unconfirmed
GUEST, unregistred user!
欢迎大家给我任何形式的提示,文章,只要是对我解决问题有帮助的
 
ODBC或ADO
 
纯c好麻烦,用odbc的api,很繁杂的一套api
如果用bcb的话,可以和delphi一样用控件,就比较简单了
 
to PiPi. 请问bcb是什么?
 
bcb就是borland C++ build.
 
to truecat:
是刘辉吗?俺是戈宇!
 
c语言一般不用数据库,用文本文件或一般文件就可以了
 
没有那么复杂吧!VC中有专门的类,只是没有delphi方便而已!
 
akaiwei:
看清楚了,人家说c,不是vc
 
VC++ 6.0 有专门的COM接口, 其实ADO本身就是COM。 调用它每那么复杂,但比Delphi还是复杂不少!
 
vc++6好还是c#好
 
Defining and Instantiating ADO Objects with #import

Manipulating an Automation object takes two steps:
Define and instantiate a variable to be used to manipulate a COM object.

Instantiate an actual instance of a COM object and assign it to the variable.
With #import you can accomplish both steps in a single line of code, using the smart pointer's (_com_ptr_t) constructor to pass in a valid CLSID, or PROGID. You could also declare an instance of the object, and then
use the _com_ptr_t::CreateInstance() method to instantiate the object. Both techniques are demonstrated in Listing 4.
Listing 4: Instantiating an ADO Connection object with #import
#import <msado15.dll> rename( "EOF", "adoEOF" )
...
struct InitOle {
InitOle() { ::CoInitialize(NULL);
}
~InitOle() { ::CoUninitialize();
}
} _init_InitOle_;
...
// Method #1: Declaring and instantiating a Connection object
_ConnectionPtr Conn1( __uuidof( Connection ) );
// Method #2: Declaring and instantiating a Connection object
_ConnectionPtr Conn1 = NULL;
HRESULT hr = S_OK;
hr = Conn1.CreateInstance( __uuidof( Connection ) );
The recommended technique is the second one because the constructor of _com_ptr_tdo
es not return a failed HRESULT if something goes wrong. The first method is flawed because it cannot test if the creation of the ADO Connection object succeeded or failed.
In both cases, use the Visual C++ extension __uuidof( Connection), which in this case retrieves a GUID defined by #import in the .tlh file corresponding to the ADO Connection object. By passing it to CreateInstance, you create a valid ADO Connection object for the Connection smart pointer. There are other forms you could pass into either the constructor or CreateInstance to reference the ADO Connection object and accomplish the same result. For more information, see the Visual C++do
cumentation for topics about #import.
The only flaw with the code above is that it assumes you have imported only ADO. If you import multiple libraries and one or more of those libraries have an object with the same name, you must provide some differentiation between the two. For example, both ADO and DAO contain an object named Recordset.
Another attribute of #import, no_namespace, prevents the compiler from qualifying the classes in a namespace, which is to say the name of the library the type library defines. In the case of ADO, this is ADODB. Using no_namespace means youdo
n't have to reference the namespace when initializing or defining variables whose types are defined by what #import generates. However, if you have many type libraries imported into your application, it is safer to omit the no_namespace attribute.
Listings 5 and 6 show the difference in your code with and without the no_namespace clause. While it may be more work to omit no_namespace, itdo
es ensure your code will be more robust in case it uses other Automation servers whose objects might share the same name as an object found in ADO.
Listing 5: Using #import with the no_namespace attribute
#import <msado15.dll> no_namespace rename( "EOF", "adoEOF" )
void main()
{
HRESULT hr = S_OK;
_ConnectionPtr Conn1 = NULL;
hr = Conn1.CreateInstance( __uuidof( Connection ) );
Conn1 = NULL;
}
Listing 6: Using #import without the no_namespace attribute
#import <msado15.dll> rename( "EOF", "adoEOF" )
void main()
{
HRESULT hr = S_OK;
ADODB::_ConnectionPtr Conn1 = NULL;
hr = Conn1.CreateInstance( __uuidof( ADODB::Connection ) );
Conn1 = NULL;
}
 
嵌入式sql
 
ado比较好。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
2K
DelphiTeacher的专栏
D
顶部