Ask a Question related to ASP.NET General, Design and Development.
-
Scherbina Vladimir #1
amount of data
Hello.
I am writing an application, that connects to mssql server via DB-Library,
and the maximum amount of data, which I can get, is only 4096 bytes.
what's wrong in this code ?
........
glob.nLength = dbdatlen(dbvals.lpDbProc, 1) + 1; //getting length of a
field
tbvars.szText = VirtualAlloc(NULL, glob.nLength, MEM_COMMIT | MEM_RESERVE,
PAGE_READWRITE); //commiting memory
strcpy(tbvars.szText, (char*)dbdata(dbvals.lpDbProc, 1)); //copying data
tbvars.szText[glob.nLength - 1] = '\000'; //cutting data
VirtualFree(tbvars.szText, 0, MEM_RELEASE);
........
note, that DBTEXTLIMIT option I've set before to maximum value(2147483647)
P.S. dbcollen() also returns 4096.
thanks for any advice.
Vladimir.
Scherbina Vladimir Guest
-
large amount of data and low efficiency
hi? we are trying to show a large amount of data selected from database(about 1000 records) in the mxml page. But we found it is very slow(about... -
split large amount of data for loading
Hi, I have a large amount of data (> 550.000 rows) to load which leads to problems with the transaction protocol. All the rows are compromised in... -
List amount of data sets by month
Hi, I've got 150.000 datasets in a Filemaker file. A "date" field within each data set shows the date (between 01.01.1996 and current day) on... -
How to send a big amount of data from an aspx page to another
Hi, I have webpage (sql.aspx) in asp.net with a big textbox. In this box, I generate SQL queries. Some of the queries can takes more than 2000... -
Performance issue while loading large amount of data
Hello I am supposed to load large amount of data from SQL scripts and I have been wondering what is the best option: -frequent commits and no... -
Jenny #2
Amount of data
How can I measure the amount of data send by my asp.net
applic. to the client browser (in byte or kb)?
Thanks
Jenny
Jenny Guest



Reply With Quote

