Please help me on how to store a visual basic 6, object datatype variable's value, into Ms Sql...
Is there any apecific datatype or smething that can be used?
Printable View
Please help me on how to store a visual basic 6, object datatype variable's value, into Ms Sql...
Is there any apecific datatype or smething that can be used?
Can you explain it.... :confused:
If are asking about how to to do database programming with VB6 and MS SQL, you can use ADO..... Tutorials can found be in here:
* http://www.vbforums.com/showthread.p...7051#SQLServer
* http://www.vbforums.com/showthread.php?t=337051#ado
Regards,
- Akhilesh :wave:
the type would be varbinary... and then you'll need to use appendchunk and getchunk to save/retrieve the data.
-tg
Thread moved to 'Database Development' forum (the 'VB6' forum is only meant for questions which don't fit in more specific forums)
c i wnt to knw what datatype can be used to store a data of type 'object' into sql...
the SQL datatype is "varbinary" .... and in code you'll need to use the GetChunk to get it out of the database and AppendChunk to get it into the database.
-tg