Microsoft SQL Server
Moderator: Enrico Maria Giordano
- damianodec
- Posts: 422
- Joined: Wed Jun 06, 2007 2:58 pm
- Location: Italia
- Contact:
Microsoft SQL Server
Qualcuno può darmi qualche esempio (se è possibile) di interrogazione tabelle con FWH e xharobur per Microsoft SQL server 8.0?
- Enrico Maria Giordano
- Posts: 8775
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 7 times
- Contact:
Re: Microsoft SQL Server
Devi cercare la stringa di connessione giusta (su www.connectionstrings.com) ed usare qualcosa del genere:
EMG
Code: Select all | Expand
#define adOpenForwardOnly 0#define adOpenKeyset 1#define adOpenDynamic 2#define adOpenStatic 3#define adLockReadOnly 1#define adLockPessimistic 2#define adLockOptimistic 3#define adLockBatchOptimistic 4#define adUseNone 1#define adUseServer 2#define adUseClient 3FUNCTION MAIN() LOCAL oRs := CREATEOBJECT( "ADODB.Recordset" ) oRs:Open( "SELECT * FROM Clienti ORDER BY Cliente", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=clienti.mdb", adOpenForwardOnly, adLockReadOnly ) WHILE !oRs:EOF ? oRs:Fields( "Cliente" ):Value oRs:MoveNext() ENDDO oRs:Close() RETURN NIL
EMG
- damianodec
- Posts: 422
- Joined: Wed Jun 06, 2007 2:58 pm
- Location: Italia
- Contact:
Sto provando l'esempio che mi hai segnalato, naturalmente tieni presente che sto riprendendo a ragionare in Fivewin dopo un pò di anni. La stringa che ricavo in quale riga la inserisco?
attualmente il programmino mi da quest'errore...
Error description: Error ADODB.Recordset/3 DISP_E_MEMBERNOTFOUND: OPEN
relativamente alla riga
oRs:Open( "SELECT * FROM Clienti ORDER BY Cliente", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=clienti.mdb", adOpenForwardOnly, a
attualmente il programmino mi da quest'errore...
Error description: Error ADODB.Recordset/3 DISP_E_MEMBERNOTFOUND: OPEN
relativamente alla riga
oRs:Open( "SELECT * FROM Clienti ORDER BY Cliente", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=clienti.mdb", adOpenForwardOnly, a
- Enrico Maria Giordano
- Posts: 8775
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 7 times
- Contact: