Click here to Skip to main content
15,913,854 members
Home / Discussions / Database
   

Database

 
GeneralRe: Which data type have get to field for array of 400 bytes in access ??? URGENT !!!! Pin
Mazdak8-Apr-02 6:14
Mazdak8-Apr-02 6:14 
GeneralI use VB ! Not VC ! And I ask answer to my question . Please !!! Pin
mimi8-Apr-02 6:50
mimi8-Apr-02 6:50 
GeneralRe: I use VB ! Not VC ! And I ask answer to my question . Please !!! Pin
Mazdak8-Apr-02 7:19
Mazdak8-Apr-02 7:19 
GeneralWho Could help me ????? Please !!! Pin
mimi8-Apr-02 8:02
mimi8-Apr-02 8:02 
QuestionInstallation Program, what do I need to include? Pin
shypht7-Apr-02 11:58
shypht7-Apr-02 11:58 
GeneralA Jet Dao problem Pin
6-Apr-02 12:00
suss6-Apr-02 12:00 
GeneralRe: A Jet Dao problem Pin
Mazdak6-Apr-02 17:42
Mazdak6-Apr-02 17:42 
GeneralExposing Existing Code as a Web Service Using C# Pin
wolga6-Apr-02 10:16
wolga6-Apr-02 10:16 
I can open in VB.NET ADODB.Stream using Open() without parameters but I can’t do that in C# using Open() with or without parameters. Is this relates to SP1 or SP2?

Imports System.Web.Services
Imports system.Xml
Imports System.Configuration
Imports ADODB
Imports MSXML2
Imports System.Reflection.Missing

' Read the foramtted XML into the Stream
Stream = New ADODB.Stream()
Stream.Open() 'it works
Stream.WriteText(orderXML)
Stream.Position = 0
‘------------------------C#---------------------
ADODB.Stream Stream = new ADODB.Stream();
Stream.Open(); // compilation error (case 1)
Stream.Open("",ADODB.ConnectModeEnum.adModeUnknown,ADODB.StreamOpenOptionsEnum.adOpenStreamUnspecified,"",""); // runtime exception (case2)

//I tried another way to invoke Open()
Object[] p=new Object[5] ;
p[0] = Missing.Value;
Stream.GetType().GetMethod("Open").Invoke(Stream,p); //the same exception as in case2.

GeneralPartial BLOB processing in ODBC Pin
6-Apr-02 6:43
suss6-Apr-02 6:43 
GeneralRe: Partial BLOB processing in ODBC Pin
Nick Parker17-Apr-02 6:57
protectorNick Parker17-Apr-02 6:57 
GeneralOracle question Pin
ernst.maurer5-Apr-02 22:47
ernst.maurer5-Apr-02 22:47 
GeneralDataSet to XMLDataDocument - change tag names Pin
MS le Roux5-Apr-02 1:05
MS le Roux5-Apr-02 1:05 
GeneralRe: DataSet to XMLDataDocument - change tag names Pin
Bruce Duncan5-Apr-02 9:12
Bruce Duncan5-Apr-02 9:12 
GeneralRe: DataSet to XMLDataDocument - change tag names Pin
MS le Roux7-Apr-02 20:06
MS le Roux7-Apr-02 20:06 
QuestionDifficult? Pin
Ludwig Stuyck4-Apr-02 20:27
Ludwig Stuyck4-Apr-02 20:27 
GeneralOLEDB rowsets and disconnected processing Pin
Bruce Duncan4-Apr-02 4:51
Bruce Duncan4-Apr-02 4:51 
GeneralRe: OLEDB rowsets and disconnected processing Pin
Mazdak4-Apr-02 21:00
Mazdak4-Apr-02 21:00 
Generaladd Db User by script. Pin
Atila3-Apr-02 23:31
Atila3-Apr-02 23:31 
GeneralSQL Timeout Question Pin
Nick Parker3-Apr-02 6:36
protectorNick Parker3-Apr-02 6:36 
GeneralA really stupid problem with SQL Pin
Dan Pomerchik2-Apr-02 1:25
Dan Pomerchik2-Apr-02 1:25 
GeneralRe: A really stupid problem with SQL Pin
James T. Johnson2-Apr-02 1:46
James T. Johnson2-Apr-02 1:46 
GeneralRe: A really stupid problem with SQL Pin
Dan Pomerchik2-Apr-02 1:46
Dan Pomerchik2-Apr-02 1:46 
GeneralRe: A really stupid problem with SQL Pin
James T. Johnson2-Apr-02 2:03
James T. Johnson2-Apr-02 2:03 
GeneralRe: A really stupid problem with SQL Pin
Mazdak2-Apr-02 3:38
Mazdak2-Apr-02 3:38 
GeneralRe: A really stupid problem with SQL Pin
Mazdak2-Apr-02 3:40
Mazdak2-Apr-02 3:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.