Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
data-access
- Page 1
Re: Securing Customer Data: An Essential Cybersecurity Handbook
Hardware and Software
Information Security
3 Weeks Ago
by WilliamOG
Basically: patch your stuff, lock your doors, and stop clicking shady emails. Got it.
Is Microsoft Solutions Partner Badge Really Worth It?
Programming
Software Development
1 Week Ago
by Mason_8
… meet in order to qualify. They have categories like Infrastructure,
Data
& AI, Business Applications, and more. Some people say it… badge. Others claim it offers real benefits such as early
access
to Microsoft tools, better technical support, and more trust from…
Re: Is Microsoft Solutions Partner Badge Really Worth It?
Programming
Software Development
1 Week Ago
by rproffitt
Wrong person to ask. But it was 2 decades ago and Microsoft's support was nothing better than "did you turn it off and on again?" This on a ERP deployment and frankly a failure in my view because it increased the amount of time we spent on the project. Not to mention downtime as we waited for fixes and server responses times in the …
Re: Is Microsoft Solutions Partner Badge Really Worth It?
Programming
Software Development
1 Week Ago
by Reverend Jim
I have to say that I have had both terrible and outstanding results from MS support techs. It all depends on who you get.
Re: Securing Customer Data: An Essential Cybersecurity Handbook
Hardware and Software
Information Security
1 Month Ago
by graceweb
… issues. Curious if you have any thoughts on balancing strict
access
controls with usability, especially in smaller teams where people wear…
Re: Theory on the VPN
Programming
Mobile Development
1 Month Ago
by Liam91
Sounds like you're diving deep into how tunneling apps work! These apps often use VPN-like methods to route traffic through servers, sometimes exploiting free
access
points. Configs like .hat may include encryption keys or payload setups. Keep exploring... lots to learn!
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
1 Month Ago
by usmanmalik57
…. AI agents use a term tool that allows LLMs to
access
external knowledge sources such as databases, APIs, and the Internet… = builder.compile() png_bytes = graph.get_graph().draw_png() # raw binary display(Image(
data
=png_bytes, format="png")) ``` **Output:**  -Some VPNs send your
data
through two places for extra safety, but it can be…
Re: Delete unused MySQL indexes
Programming
Databases
1 Month Ago
by toneewa
…
data
in detail), which can create incomplete or missing information about index usage like table I/O waits, index
access
…the database was restarted or reset, because the schema
data
is reset on server restarts. It also resets …or when supporting foreign keys. This can break your
data
integrity or application. Make sure they are enabled: …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by john_111
… the webserver however. Say a PHP script to handle
data
transfers such as
access
a database on the server. Or a javascript…
Re: How to connect to the Pinterest API using PHP?
Programming
Web Development
1 Month Ago
by geekinformatic
Hey! If you're using the CakePHP framework, you can connect to the Pinterest API with cURL and OAuth integration. Just follow Pinterest’s API docs for endpoints and token handling.
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
1 Month Ago
by TurisVPN
A VPN helps hide your IP and encrypt your internet, so others (like your ISP) can’t see what you do online. But it doesn’t make you totally anonymous. The VPN company can still see your traffic (if they keep logs). Websites can track you with cookies, and if you log in with your real info, they know who you are. So, a VPN is good for privacy …
Data Access Objects in jsp and beans?
Programming
Web Development
16 Years Ago
by paul_1234
…i have created a class to retrieve those
data
from the database.. my problem is that whenever… the one that i used to retrieve the
data
.. import java.io.*; import java.sql.*; import… best way to do it is by using
data
access
objects..".. can anybody just an idea on… how to do this using
data
access
objects or give some sample codes for …
Re: Data Access Objects in jsp and beans?
Programming
Web Development
16 Years Ago
by ~s.o.s~
…. Use JSTL along with servlet. > whenever i retrieve that
data
in my jsp page, it only shows this > Ljava… free book which you can use to read more about
Data
Access
Object pattern.
Data-Access with Vbasic
Programming
Software Development
17 Years Ago
by elanch
… vb and dataAccess. Now i have created a form in
data
-
access
. I need the datas entered in the form to be… appended in the
access
-Table when i click the save button. For eg: Roll… click the save_button, the datas has to be saved in
access
table. please send me the code for this elanch
Data access misaligned address violation error
Programming
Software Development
15 Years Ago
by katwalatapan
Hello, While compiling my code, I'm receiving a "
Data
access
misaligned address violation" error. I tried to find the …
Data access misaligned address violation error
Programming
Software Development
15 Years Ago
by katwalatapan
Hello, I have observed a
data
access
misaligned error in my code. I am trying to isolate …
Data access Layer Design with C++
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
… problem in UI thing. But I have problem with designing
Data
Access
Layer. It will basically be a SQLite database backend (I…
C++ and data access
Programming
Software Development
18 Years Ago
by SelArom
…I seem to be having trouble comprehending is how
data
access
is handled. the main aspect is developing applications …net makes it easy to connect to different
data
sources like databases,
access
files, and xml files. but whenever I…the different ways that serious application developers store and
access
data
when they are working in C++? and by …
3 tier app, data access layer, business logic layer
Programming
Software Development
15 Years Ago
by skylancer
… but I still confused how to implement it 1. In
data
access
layer, could I return datareader? it's the better approach… in business layer and I pass this as parameter to
data
access
layer, is that good way? 3. if anyone have the…
correcting data access misaligned address violation
Programming
Software Development
15 Years Ago
by katwalatapan
Hello, I have observed a
data
access
misaligned address violation during the following
data
type casting. [code=c] #include <stdio.…] Please help me isolate the issue and address the
data
alignment violation. I believe the possible reason could be …that unsigned int
data
type is 16 bits and the float
data
type is 32 bits, and…
active data objects and data access object
Programming
Software Development
11 Years Ago
by kinene tallman
hellow guys please make me understand what is the advantage of using ado(active
data
object)over dao(
data
access
object) please assist me to understand the difference
Creating data access layer in java
Programming
Software Development
20 Years Ago
by pursottam tiwar
dear all the programmer i m facing a difficulty in creating the concept of
data
access
layer (DAL)concept in java ...as it is implemented in .net...if any one can help abt this plz send mail at [i][email]email removed by moderator[/email][/i]
Re: Creating data access layer in java
Programming
Software Development
20 Years Ago
by jwenting
…). There are several ways in which you can implement a
data
access
layer. You could use EJB, JDO, or roll your own…
Re: Creating data access layer in java
Programming
Software Development
20 Years Ago
by freesoft_2000
Hi everyone, I did a similar project like this for some company. Your best bet is to try and build your own
data
access
layer from scratch. Use your own concept and build it using the standard SDK. Please note that if you do this you are actually implementing your own industry standard Richard West
Simple Data Access Layer against SQL Server
Programming
Software Development
15 Years Ago
by Ramy Mahrous
If you need to execute SQL Statements\Stored Procedures\UDFs which return\don't return results, Here I've developed this class to be used in
Data
Access
Layer.
Re: Data-Access with Vbasic
Programming
Software Development
17 Years Ago
by manoshailu
…set reference 'Project -> Reference - > Microsoft Activex
Data
Objects 2.6 Library [/COLOR] Dim cn As New ADODB… ADD button, select "Microsoft
Access
Driver(*.mdb), type any name in
Data
Source Name, click the Database button…,Select
access
Database where u stored. use…
Re: Data-Access with Vbasic
Programming
Software Development
17 Years Ago
by dedort
hi friends! I'm new to vb and
access
. i would like to ask favor from you on how to connect my database
access
to vb? cause i have difficulties in coding my connection from
access
to vb. thnaks!
Re: Microsoft Data Access components MDAC error
Programming
Software Development
11 Years Ago
by oussama_1
your code is working fine, its a driver issue you should reinstall MDAC check this link [Click Here](social.msdn.microsoft.com/Forums/vstudio/en-US/8775ee9c-f48a-4f2e-89dd-92e5f5c59799/the-net-framework-
data
-providers-require-microsoft-
data
-
access
-componentsmdac)
data access
Programming
Software Development
21 Years Ago
by jayakumar
… me? i to plan now front end vb back end
access
and also design the front end and also created the… database now my doubt how to
access
the mdb files in my visual basic for example [B… box and click the command box auto maticaly store the
data
base.[/B] above the example plz give me solution how…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC