Click here to Skip to main content
16,003,265 members
Home / Discussions / Database
   

Database

 
GeneralRe: How to get delete/Update row + SQL Pin
Eddy Vluggen21-May-12 4:27
professionalEddy Vluggen21-May-12 4:27 
AnswerRe: How to get delete/Update row + SQL Pin
JohnPayton21-May-12 13:04
JohnPayton21-May-12 13:04 
QuestionRe: How to get delete/Update row + SQL Pin
jojoba201121-May-12 20:08
jojoba201121-May-12 20:08 
AnswerRe: How to get delete/Update row + SQL Pin
JohnPayton21-May-12 20:25
JohnPayton21-May-12 20:25 
QuestionRe: How to get delete/Update row + SQL Pin
jojoba201121-May-12 20:34
jojoba201121-May-12 20:34 
AnswerRe: How to get delete/Update row + SQL Pin
JohnPayton21-May-12 20:51
JohnPayton21-May-12 20:51 
QuestionRe: How to get delete/Update row + SQL Pin
jojoba201121-May-12 21:22
jojoba201121-May-12 21:22 
AnswerRe: How to get delete/Update row + SQL Pin
JohnPayton22-May-12 12:52
JohnPayton22-May-12 12:52 
QuestionRe: How to get delete/Update row + SQL Pin
jojoba201122-May-12 17:58
jojoba201122-May-12 17:58 
Questiondata base system Pin
sajid ali laghari18-May-12 20:30
sajid ali laghari18-May-12 20:30 
AnswerRe: data base system Pin
Eddy Vluggen19-May-12 0:39
professionalEddy Vluggen19-May-12 0:39 
QuestionHow to sort result if data fields contains both numeric and character value Pin
Rupesh Kumar Swami17-May-12 21:20
Rupesh Kumar Swami17-May-12 21:20 
AnswerRe: How to sort result if data fields contains both numeric and character value Pin
Eddy Vluggen19-May-12 0:32
professionalEddy Vluggen19-May-12 0:32 
QuestionExcel, OleDb, ACE, and skipping header rows Pin
PIEBALDconsult17-May-12 10:46
mvePIEBALDconsult17-May-12 10:46 
AnswerRe: Excel, OleDb, ACE, and skipping header rows Pin
Jörgen Andersson17-May-12 11:39
professionalJörgen Andersson17-May-12 11:39 
GeneralRe: Excel, OleDb, ACE, and skipping header rows Pin
PIEBALDconsult17-May-12 14:20
mvePIEBALDconsult17-May-12 14:20 
GeneralRe: Excel, OleDb, ACE, and skipping header rows Pin
Jörgen Andersson17-May-12 20:36
professionalJörgen Andersson17-May-12 20:36 
GeneralRe: Excel, OleDb, ACE, and skipping header rows Pin
PIEBALDconsult21-May-12 8:38
mvePIEBALDconsult21-May-12 8:38 
GeneralRe: Excel, OleDb, ACE, and skipping header rows Pin
Jörgen Andersson21-May-12 9:59
professionalJörgen Andersson21-May-12 9:59 
QuestionSerial number in SQL Pin
draghu17-May-12 0:17
draghu17-May-12 0:17 
AnswerRe: Serial number in SQL Pin
Pablo Aliskevicius17-May-12 2:48
Pablo Aliskevicius17-May-12 2:48 
AnswerRe: Serial number in SQL Pin
Andy_L_J17-May-12 20:51
Andy_L_J17-May-12 20:51 
GeneralRe: Serial number in SQL Pin
draghu17-May-12 22:11
draghu17-May-12 22:11 
QuestionSybase DB access in windows 7 Pin
VenkataRamana.Gali16-May-12 17:29
VenkataRamana.Gali16-May-12 17:29 
Hi all

I am using .net FW 3.5, its desktop applicaiton.

MyApplication is fetching data from sybase adoptive server and populating in it. Below connection, code.

XML
connectionString=DRIVER=MERANT 3.60 32-BIT Sybase;UID=test;DB=db1;SRVR=XYZSERVER;PWD=*****


C#
using (OdbcConnection connection = new OdbcConnection(connStringFromConfig)
			{
				OdbcDataAdapter adapter = new OdbcDataAdapter(query, onnection);
				connection.Open();
				adapter.Fill(dt);
				connection.Close();
			}


above code works fine in windows xp. where as same code is not working in windows 7. I am executing in 64bit machine.

i got error while opening connection.

C#
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified


Anything i am missing ? or do i need to configure anything?

appriciated u r quick response.
Ramana


modified 17-May-12 0:21am.

AnswerRe: Sybase DB access in windows 7 Pin
JohnsonLuis16-May-12 21:07
JohnsonLuis16-May-12 21:07 

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.