I am trying to call Oracle store procedures from MSSQL via linked server connection. For every kind of oracle store procedure, I am receiving several error messages coming from oracle OLEDB or ODBC provider telling that there are syntax errors. I am looking for a solution. Thanks.
y_seval
Posts
-
MSSQL linked Server -
MSSQL Linked ServerI am trying to call Oracle store procedures from MSSQL via linked server connection. For every kind of oracle store procedure, I am receiving several error messages coming from oracle OLEDB or ODBC provider telling that there are syntax errors. I am looking for a solution. Thanks.
-
Why my Win2k Server only run .aspx but no .asp files?Tehre is an execute permission setting on Default WEB site properties page Home Diractory Tab Execute Permissions have to be Scripts and Executibles try this
-
DataRaw classHi, I have simular code like below the type object in dr.ItemArray[0] is Int16 but I can not assigne the dr.ItemArray[0] to i (int) i = dr.ItemArray[0]; throws exception Is there a method of assigning DataRow fields of number types to integer variables; To achieve my goal I'm converting the object to string and then back to integer i = int.Parse(n.ToString()); I think that this can not be the correct way. Thank you in advance, Seval YILMAZ object n; int i; foreach (DataRow dr in clGlobal.ds.Tables["login1"].Rows) { n = dr.ItemArray[0]; i = int.Parse(n.ToString()); }
-
CSocket problemHi, I have an APPWizard project which has CMainFrm class I added a CWinThread and CSocket derived classes to the project.(CRThread and CRSocket my classes) when I connect to a server with CRSocket whithin CMainFrm class the OnReceive event of the socket trigers (no problem). But when I transfer the same code to the thread CRThread the OnRecive event of the CRSocket does not triger (connection is OK). I think that there is a problem with messages received by the CWinThread derived class (CRThread) Can you yelp me with this problem, Thank you in advance, Seval YILMAZ sample code m_pRSocket = new CSocket(); m_pRSocket->Create(); m_pRSocket->Connect(_T("10.10.1.1"), 1550);
-
cursor did not changeHi, I wrote this code on CMessDlg : public CDialog but the cursor type is not changing What can be the reseon? Thank you in advance, Seval YILMAZ OnSetCursor is trigeret on ON_WM_SETCURSOR() HCURSOR hcrs; BOOL CMessDlg::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) { hcrs = AfxGetApp()->LoadCursor(IDC_NODROP); CWinApp* pApp = AfxGetApp(); SetCursor( hcrs ); return CDialog::OnSetCursor(pWnd, nHitTest, message); }
-
sizeof()I have problem with sizeof() function in my VC++ 6.0 compiled project struct A { short b; char c; }a; int t = sizeof(a); gives me t=4; ---------------------------------------- I think it have to be 3 struct A { char c; }a; int t = sizeof(a); gives me t=1; all right struct A { short b; }a; int t = sizeof(a); gives me t=2; all right I think that I have some problem with my project settings but I do not what. In some other projct the sizeof() works in way a want it gives 3 for the structure above. Can someoen explan the reason of the sizeof() function behavier. Thank you in advance, Seval YILMAZ
-
CSocket and CWinThreadWhen I'm using a class derived from CSocket in a class derived from CWinThread the CMyClass::OnReceive(nErrorCode); does not triger. Can someone explain the reason in some other projects it trigers. Thank you in andvance Seval YILMAZ
-
EditorI'm looking for an editor which I can use for C or C++ application compiled from command prompt with build.exe or nmake.exe utility. It is difficult for me to use the MSDEV.EXE. Thank you in advance, Seval YILMAZ
-
DDK from Windows2KIs it possible to download the DDK for Windows 2000 (Driver Development Kit) from somewhere? Microsoft distributes it on CD. I could not find a link for downloading. Thank you in advance, seval
-
Visual C++ MFC DebugI have a multitreading VC project developed with msvc 6.0 My problem is when I'm running the application in debug mode and some error apears. The debug pointer stops somewhere in the code written by MS MFC staff and application quits. I want the debug pointer donot to enter the code written by MS MFC staff, because I can not determine where is my error cousing line of code. Seval