Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all i have created application in powerbuilder, i need sql oledb connection string to connect ms-sql server. please someone give me oledb connection string for powerbuilder
Posted

PowerBuilder has native connectors, see here : http://www.sybase.com/detail?id=44510[^]
 
Share this answer
 
// Profile OLEDB-SQLServer-Local
SQLCA.DBMS = "OLE DB"
SQLCA.LogPass = <*****>
SQLCA.LogId = "sa"
SQLCA.AutoCommit = False
SQLCA.DBParm = "PROVIDER='SQLOLEDB',DATASOURCE='(local)',PROVIDERSTRING='Database=EASDemoDB'"

See: http://pbdj.sys-con.com/node/106956?page=0,1 or
http://www.tek-tips.com/viewthread.cfm?qid=474287[^]
 
Share this answer
 
You could take a look at this for a complete set of connection strings.

http://www.connectionstrings.com/[^]

Best regards,
Eduard
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900