Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Exclusively for Visual Basic 6.0 Programmers Only!

VBMasters :)
Sir's

..Magtatanong po Ulit, About Sa MYSQL Database ang isang MYSQL database po ba ay kayang mag hold ng Millions of ROWS?. Halimbawa po nag add po ako, tapos Million of Rows na po, kaya pa po bang kargahin ng MYQSL Database po yun o hanggang Thousands lang po? Pwede po Pa Explain ^^


Salamat po :)

ask google. tignan mo kung ilan ang limit ng mysql:thumbsup:
 
yes, it can... but then, expect slower results and respond time, kayang-kaya nya yan, as of the moment, meron ako visitor logs running for about a year now... 1.6million rows and counting... got no problem handling all of those records... estimated export file size? probably around 200~220mb... still a long way to go from the database's limit
 
Last edited:
VBMasters :)
Sir's

..Magtatanong po Ulit, About Sa MYSQL Database ang isang MYSQL database po ba ay kayang mag hold ng Millions of ROWS?. Halimbawa po nag add po ako, tapos Million of Rows na po, kaya pa po bang kargahin ng MYQSL Database po yun o hanggang Thousands lang po? Pwede po Pa Explain ^^


Salamat po :)

ang tanong eh kung kayang kargahin ng server pc mo yung laki ng data size ng database mo... kasi ang pag kakaalam ko hanggat may space kaya nya... yun nga lang need mo optimize at tune-up database mo para sa mabilis na pag query...

yun ang pag kakaalam ko
 
Bukod sa codejock, devexpress and helpvista, ano pa po gamit niyo sa pagpapaganda ng GUI sa mga vb projects natin? Kelangan ko na po kasi simulan yung system namin eh. Please...
 
ask google. tignan mo kung ilan ang limit ng mysql:thumbsup:


..Opo Sir tinignan ko po bago nagpost dito, kaso tinignan ko din po dito para mas malilinawan ako Salamat po :salute:

yes, it can... but then, expect slower results and respond time, kayang-kaya nya yan, as of the moment, meron ako visitor logs running for about a year now... 1.6million rows and counting... got no problem handling all of those records... estimated export file size? probably around 200~220mb... still a long way to go from the database's limit

..Thank you po sa pag explain :salute:


ang tanong eh kung kayang kargahin ng server pc mo yung laki ng data size ng database mo... kasi ang pag kakaalam ko hanggat may space kaya nya... yun nga lang need mo optimize at tune-up database mo para sa mabilis na pag query...

yun ang pag kakaalam ko

..Salmat po sa response :) Nakatulong po ng malaki Thankyou po :salute:
 
Welcome. Glad to help. :thumbsup:
Update na lang, post mo po dito kung ok na.

:salute:

Sir Ok na po Napag Experementuhan haha.. kaka code
ito po bale tinatawag ko si AutoSum() tapos nag tototal na po at nalalagay ko sa textbox :)

:yipee:
:thumbsup:


Private Function AutoSum()

Dim strSQL As String

If rsAutoSum.State = adStateOpen Then rsAutoSum.Close

strSQL = "SELECT SUM(Product) AS AutoTotal from tblinfo"
rsAutoSum.Open strSQL, con, adOpenForwardOnly, adLockOptimistic

txtSum1.Text = rsAutoSum!AutoTotal

Set rsAutoSum = Nothing

End Function
 
Last edited:
VBMasters :)
Sir's

..Magtatanong po Ulit, About Sa MYSQL Database ang isang MYSQL database po ba ay kayang mag hold ng Millions of ROWS?. Halimbawa po nag add po ako, tapos Million of Rows na po, kaya pa po bang kargahin ng MYQSL Database po yun o hanggang Thousands lang po? Pwede po Pa Explain ^^


Salamat po :)


yes naman, hindi naman number of rows ang basis sa isang database system, kundi yung mismong size nya as a whole.

about sa performance, kahit anong database naman talaga mabagal kapag marami ng records, so depende sa query execution and commands mo para mapabilis
 
yes naman, hindi naman number of rows ang basis sa isang database system, kundi yung mismong size nya as a whole.

about sa performance, kahit anong database naman talaga mabagal kapag marami ng records, so depende sa query execution and commands mo para mapabilis


Thank You po sa pag explain :salute:
 
mga masters pa-help po ako pano po i-convert ung Array of bytes(4 bytes) to long? pacode naman po mga masters.

eto po ung code ko pacheck po kung ano mali dito di makuha ung tamang value e

code:
Dim mylong as long, byt(3) as byte
byt(0) = &H8B
byt(1) = &H44
byt(2) = &H24
byt(3) = &H04
mylong=byt(0)+byt(1)+byt(2)+byt(3)

pano makuha to mga sir?
 
Mga master/experts kong ka-symb. baka pwde po ako makahingi sainyo ng codes para sa magiiscan ng BAR CODE sa ID tpos masesend yung info via SMS. MARAMING SALAMAT PO.. SANA MATULUNGAN NYO KO ..NEWBIE po kasi ako sa VB6 .alam ko kse maraming magaling dito .kaya dito na ko humihingi ng tulong.. :thanks: po in advance..please :help: me :pray:
 
Nc Thread TS! :thumbsup:
Ayos toh! hahaha.. 1st yr college BSIT ako.! :yipee:
Pa subscribed po! :beat:

May mga makakatulong na rin sakin kapag nahihirapan ako at hndi ko ma gets.. YEHEY! :excited:

Pa help po ako mga ka SB aa :pray:

Salamat po! :salute:
 
mga masters pa-help po ako pano po i-convert ung Array of bytes(4 bytes) to long? pacode naman po mga masters.

eto po ung code ko pacheck po kung ano mali dito di makuha ung tamang value e

code:
Dim mylong as long, byt(3) as byte
byt(0) = &H8B
byt(1) = &H44
byt(2) = &H24
byt(3) = &H04
mylong=byt(0)+byt(1)+byt(2)+byt(3)

pano makuha to mga sir?


sa .net language meron tayong explicit conversion na tinatawag,
isa ito sa mga explicit conversion

mylong= Convert.ToIn64(byt(0))

* int 16 = short
* int 32 = integer
* int 64 = long
 
Mga master/experts kong ka-symb. baka pwde po ako makahingi sainyo ng codes para sa magiiscan ng BAR CODE sa ID tpos masesend yung info via SMS. MARAMING SALAMAT PO.. SANA MATULUNGAN NYO KO ..NEWBIE po kasi ako sa VB6 .alam ko kse maraming magaling dito .kaya dito na ko humihingi ng tulong.. :thanks: po in advance..please :help: me :pray:

Try mo dito pscode.com , madami ka makikita dyan na sample code and system. :thumbsup:
 
sample codes naman mga ka-SB
VB6

mechanics:
db > database's name
tbl > table's name
dg > datagrid's name

panu mag add ng new records sa database using datagrid components only, at least 2 records(Name, Address) :help:
 
Back
Top Bottom