Search found 61 matches: sqlexpress

Return to advanced search

MSSQL EXPRESS NativeError : 3621

Hi all I tried to import a .dbf file to a SQLEXPRESS server version 2019 but this error happens: 'NATIVEERROR : 3621', it seems to me that the problem stems from the conversion of the fields of type : 'DATE' to 'DATETIME' in fact changing the ...
by mauri.menabue
Wed Mar 17, 2021 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSSQL EXPRESS NativeError : 3621
Replies: 1
Views: 301

Re: Cambia Dialog (RC) según BaseDato que abra

... oCn := FW_OpenAdoConnection( Factura.mdb ), me mostraba sin error el Dialogo y con oCn := FW_OpenAdoConnection( { "MSSQL", "HPDESA\SQLEXPRESS", "Factura", "", ""} ) se mostraba descuadrado, cambié el RC a "FONT 10" y se solucionó el problema. ...
by gdeteran
Mon Sep 28, 2020 8:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambia Dialog (RC) según BaseDato que abra
Replies: 19
Views: 1985

Cambia Dialog (RC) según BaseDato que abra

... La diferencia es esta : oCn := FW_OpenAdoConnection( G:\FactNew\Factura.mdb ) oCn := FW_OpenAdoConnection( { "MSSQL", "HPDESA\SQLEXPRESS", "Factura", "", ""} ) Gracias João, espero ahora se vean las fotos.
by gdeteran
Sat Sep 26, 2020 12:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambia Dialog (RC) según BaseDato que abra
Replies: 19
Views: 1985

Re: Mysql y tipo de dato decimal

... "MYSQL,localhost,rj,root,1234", .t. ) // con esta conexión no trae la tabla * oCn := FW_OpenAdoConnection( "SQLSERVER,desarrollo\sqlexpress,rj,sa,1234", .t. ) // con esta conexión la trae perfecto tabla if oCn == nil ? "Connect fail" return nil endif msgrun( "Connected." ...
by jpcavagnaro
Wed Jul 15, 2020 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mysql y tipo de dato decimal
Replies: 5
Views: 647

Ayuda con Mysql

... el UDL generar la cadena de conexión. El tema es que cuando quiero conectarme con ADODB no logro conectarme, tambien tengo instalado en otra pc sqlexpress y la conexión funciona perfecto. La conexión es "Provider=MSDASQL.1;Password=Cava1234;Persist Security Info=True;User ID=root;Data Source=jpcavagnaro;Initial ...
by jpcavagnaro
Wed Jul 08, 2020 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda con Mysql
Replies: 11
Views: 2019

Re: libmariadb.dll vs. libmysql.dll

... provides convenient wrapper functions for ADO and makes it easy to use ADO. For testing and development on local server, we can download the free SQLEXPRESS and install on our PC.
by nageswaragunupudi
Tue May 07, 2019 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: libmariadb.dll vs. libmysql.dll
Replies: 6
Views: 1441

Re: COPY FILE MS SQL Server

... not look sophisticated but works well and is not unduly slow. This is a program I just tested for copying "customer" table from my local SQLEXPRESS server to a temporary table "#customer" on the cloud server provided by FWH for our test use. #include "fivewin.ch"function ...
by nageswaragunupudi
Wed Nov 21, 2018 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: COPY FILE MS SQL Server
Replies: 3
Views: 1366

Re: Backup y Restore con MySqlDump

Estimados,

Con mysqldump.exe hacemos backup de MySql/MariaDB

Cómo se hace para SQLEXPRESS?

Gracias por la ayuda.

Armando porfa me puede enviar a acuellar@lostajiboshotel.com Gracias
by acuellar
Wed May 23, 2018 11:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Backup y Restore con MySqlDump
Replies: 36
Views: 6332

Re: Request for feedback for SQL

My preferences:
1. MariaDB ( free, powerful and no limitations )
2. SQLEXPRESS ( free. works same way as MSSQL server with limitations on datasize, etc. But these limitations are not at all important )
by nageswaragunupudi
Fri Oct 13, 2017 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request for feedback for SQL
Replies: 7
Views: 1385

Re: Pasar tablas SQL Server a DBF

... //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cDatabase := "SBODemoUS" local oCn, oRs, aTables, cTable oCn := FW_OpenAdoConnection( { "MSSQL", cServer, ...
by Compuin
Fri Jul 14, 2017 2:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 7208

Re: Pasar tablas SQL Server a DBF

... //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" local cTable := "OCRD" ...
by Compuin
Thu Jul 13, 2017 7:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 7208

Re: Pasar tablas SQL Server a DBF

... //----------------------------------------------------------------// REQUEST DBFCDX function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" local cTable := "OCRD" ...
by Compuin
Thu Jul 13, 2017 4:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 7208

Re: Pasar tablas SQL Server a DBF

... "FiveWin.ch" //----------------------------------------------------------------// function Main() local cServer := "localhost\SQLEXPRESS" local cUser := "SA" local cPassword := "1234" local cDatabase := "SBODemoUS" local cTable := "OCRD" ...
by Compuin
Thu Jul 13, 2017 3:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar tablas SQL Server a DBF
Replies: 46
Views: 7208

Re: Ejemplo de Tdatarow para crear Base de datos y tablas

First thing is to connect to the server. The server can be a remote server or SQLEXPRESS on local PC. Please use this function to connect to the server. MSSQL Server/SQLEXPRESS can be configured to accept logins as user/password or with Windows authentication or ...
by nageswaragunupudi
Tue Mar 21, 2017 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo de Tdatarow para crear Base de datos y tablas
Replies: 19
Views: 3313

Re: xBrowse jpg in SQL-database

... and also is written in the database table. http://imagizer.imageshack.us/v2/xq90/633/DYrpvB.jpg This program is tested with MSSQL (SQLEXPRESS) and with MYSQL before posting. http://imagizer.imageshack.us/v2/xq90/633/DYrpvB.jpg Specific note for MySql: By default ...
by nageswaragunupudi
Sun Dec 27, 2015 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse jpg in SQL-database
Replies: 19
Views: 3108
PreviousNext

Return to advanced search

cron