New AdoRDD (free)
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Code: Select all
2007-04-27 19:33 UTC+0100 Antonio Linares (alinares@fivetechsoft.com)
* contrib/adordd/adordd.ch
* contrib/adordd/adordd.prg
* QUERY support and MS SQL support (thanks to Vikthor!)
Vikthor already successfully tested the ADORDD on Microsoft SQL server and added a new clause QUERY :-)
Regards,
Antonio
Re: Where can I find ADORDD.lib
if you are using xHarbour and got this errors :ask wrote:Antonio I use xharbour but I don't have ADORDD.LIB .Can you please tell me where I can found it?Antonio Linares wrote:A.S.K.
You just need AdoRdd.lib and HbOleAut.lib if you use Harbour. For xharbour users, just AdoRdd.lib
Thank you in advance
A.S.K.
Code: Select all
Error: Unresolved external '_HB_FUN_USRRDD_RDDDATA' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_USRRDD_AREADATA' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_USRRDD_ID' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_UR_SUPER_ERROR' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_UR_SUPER_SETFIELDEXTENT' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_UR_SUPER_ADDFIELD' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_UR_SUPER_OPEN' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_UR_SUPER_CLOSE' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
Error: Unresolved external '_HB_FUN_USRRDD_GETFUNCTABLE' referenced from C:\XHARBOUR\LIB\ADORDD.LIB|adordd
you must be add usrrdd library into linked
by the way , if you are using Microsoft SQL Server 2005 , and wish use adordd , you must be make little changes to adordd.prg file
Code: Select all
case s_cEngine == "SQL"
oAdo:CursorType = adOpenStatic
oAdo:CursorLocation = adUseClient
oAdo:LockType = adLockPessimistic
oAdo:Open( "SELECT * FROM " + s_cTableName,;
"Provider=SQLOLEDB;" + ;
"server=" + s_cServer + ;
";database=" + aOpenInfo[ UR_OI_NAME ] + ;
";uid=" + s_cUserName + ;
";pwd=" + s_cPassword, adOpenKeyset, adLockOptimistic )
and need modify this line into Adordd.ch
Code: Select all
[ <dbEngine: ACCESS, MYSQL, ORACLE, INFORMIX, SQL> ];
USE northwind VIA "ADORDD" TABLE "Customer" SQL ;
FROM "ServerSql2005" USER "sa" PASSWORD "super"
Browse()
[/code]
Y finally , like said Rene, SQL dosen'n need ODBC
Fernando y Antonio...¡¡ felicitaciones por este aporte !!
and .... remote connections with SQL y MySQL works perfect
Sorry, but my english is very , very bad.
Vikthor
- RAMESHBABU
- Posts: 591
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
Hi Friends
My email : aksharasoft@hotmail.com
Thanks
- Ramesh Babu P
Can a get a copy of USRRDD.LIB please.you must be add usrrdd library into linked
My email : aksharasoft@hotmail.com
Thanks
- Ramesh Babu P
- Eugeniusz Owsiak
- Posts: 60
- Joined: Fri Oct 07, 2005 5:38 am
- Location: Poland
You can get it from http://www.harbour-project.org/ downloading the latest stable binaries.
Regards Eugeniusz
Regards Eugeniusz
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Here it is usrrdd.lib for Harbour:
http://rapidshare.com/files/28329001/usrrdd.zip.html
And here it is for xharbour:
http://rapidshare.com/files/28329167/usrrdd.zip.html
http://rapidshare.com/files/28329001/usrrdd.zip.html
And here it is for xharbour:
http://rapidshare.com/files/28329167/usrrdd.zip.html
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
SET FILTER TO ... support
i.e.: SET FILTER TO First = "Homer"
To use special SQL expressions, place quotation marks around them, i.e.:
SET FILTER TO "City LIKE 'Chi*'"
http://rapidshare.com/files/28522792/adordd.zip.html
i.e.: SET FILTER TO First = "Homer"
To use special SQL expressions, place quotation marks around them, i.e.:
SET FILTER TO "City LIKE 'Chi*'"
http://rapidshare.com/files/28522792/adordd.zip.html
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Antonio,
Enrico is right !
http://www.techonthenet.com/sql/like.php
http://en.wikipedia.org/wiki/SQL
Regards,
Felix
Enrico is right !
http://www.techonthenet.com/sql/like.php
http://en.wikipedia.org/wiki/SQL
Regards,
Felix
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
2007-04-29 17:34 UTC+0100 Antonio Linares (alinares@fivetechsoft.com)
* contrib/adordd/adordd.prg
* Oracle support, thanks to Srdjan Dragojlovic
* contrib/adordd/adordd.ch
* formatting
You may download it from here:
http://rapidshare.com/files/28565058/adordd.zip.html
* contrib/adordd/adordd.prg
* Oracle support, thanks to Srdjan Dragojlovic
* contrib/adordd/adordd.ch
* formatting
You may download it from here:
http://rapidshare.com/files/28565058/adordd.zip.html