Hi,
I'm accessing a FoxPro database via ole db and ths works fine on my local
report server. However, when I deploy the report to the live report server
I'm getting the error 'Invalid path or file name'
The FoxPro database is on a separate server and the connection string is :
string conn...
more >>
this is the call
private void Page_Load(object sender, System.EventArgs e)
{
OdbcConnection connection = new OdbcConnection ("DSN=PFW52");
CreateDataAdapter(connection);
}
this is the code, no errors, but NO UPDATE I have to use ODBC I just need to
update a field based on a key, EMBARASS...
more >>
Hi,
I have a small problem with "odbccommandbuilder".
I get an exception exception = {"ERROR [07002] [Microsoft][ODBC Microsoft
Access Driver]COUNT field incorrect"}
--- START CODE ---
public void WriteDataToDatabase(DataSet ds)
{
/* --- SQL INSERT INTO Statement ---
* INS...
more >>
I'm a newbie in C# and database.
I want to show a list of available DSN in my system. Is there a way to do
so?
Using C++ and Windows API I can use SQL....(example, SQLDataSources() and
others) functions to enumerate what I want. However, is there an equivelent
in C# .NET?
Thank you...
more >>