DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
Building Scalable Real-Time Apps with AstraDB and Vaadin
Register Now

The Latest Databases Topics

article thumbnail
Implementing PostgreSQL User-Defined Table Functions in YugabyteDB
In this article, we discuss how to implement PostgreSQL's User-Defined Table Functions in YugabyteDB.
December 20, 2019
by Bryn Llewellyn
· 18,759 Views · 2 Likes
article thumbnail
Image Generation in Action: 3 Methods With Code Samples and Image Generation API
In this article, learn possible solutions needed to generate images programmatically, possible caveats and pitfalls you may hit, as well as best practices.
July 18, 2022
by Max Shash CORE
· 3,300 Views · 3 Likes
article thumbnail
Identity and Access for Servers and Databases With StrongDM
Right out of the box, you can start using StrongDM to untangle multiple credentials and sensitive information seamlessly.
March 12, 2020
by Juan Ignacio Giro
· 6,730 Views · 2 Likes
article thumbnail
I Dare You Not to Fall In Love
Read on to see why one developer fell in love with Ruby on Rails while learning it on the go, and the situations in which he believes it's best used.
Updated August 27, 2017
by Mahboob Hussain CORE
· 7,689 Views · 3 Likes
article thumbnail
I Am Keeping My Mind Open About GraphQL
I'm not 100% convinced that GraphQL is the solution we are looking for, but I am convinced that I should be learning more about it.
September 7, 2016
by Kin Lane
· 3,084 Views · 3 Likes
article thumbnail
Hybrid Integration and API Management (What's the Difference?)
In this article, find out the difference between hybrid integration and API management.
Updated January 2, 2020
by Shawn Ryan
· 11,963 Views · 2 Likes
article thumbnail
Hybrid Cloud Can Smooth the Digital Transformation Culture Shock
Making use of both public and private cloud infrastructures can actually have a big part in making your digital transformation efforts successful.
March 4, 2019
by Claus Jepsen
· 11,527 Views · 4 Likes
article thumbnail
HTML5's IndexedDB: Transactions Tutorial
Last week I wrote a brief introduction to Kristof Degrave's ongoing, multi-stage IndexedDB tutorial. Judging by the number of reads, it looks like quite a few of you are interested in learning more about HTML5's IndexedDB. I'm following Kristof's tutorial anyway, so I might as well keep posting about it here. Today Kristof has posted his next IndexedDB tutorial -- Transactions -- and here's where IndexedDB begins to get exciting, where the work of creation and definition begins to pay off. We're preparing for actual data retrieval and manipulation, so we'll be creating a READ_WRITE transaction. At this point, if you're trying to understand IndexedDB formally as well as use it pragmatically, you might want to get more comfortable with W3C's conceptual treatment of transactions along with the formal object description, and maybe the IDBTransaction interface too. (For me, it especially helps to understand emerging tech like HTML5 a little more abstractly, just in case the standard takes a different turn than previously expected.) If you prefer learning by doing, here's how Kristof explains transactions: Today, I’ll handle the transaction subject. As said in previous posts, every request made to the database needs to be done in a transaction. So for every read or write request we need to create a new transaction. There for we need a database connection and 2 argument that we will pass to the transaction method. The post is, like his previous tutorials, quite straightforward -- painlessly showing you how to use what is potentially one of the most powerful features of HTML5. Take a look, create an IndexedDB transaction, and get ready to retrieve and manipulate data.
May 22, 2023
by John Esposito
· 8,706 Views · 1 Like
article thumbnail
HowTo: Store and Retrieve Images in a SQL CE Database on Windows Phone Mango
Serious local database support is probably one of the coolest new features of Windows Phone 7.1(5). For the Windows Phone developer, it's not hard to create a local database, or add some columns, indexes or tables. But if you're using a SQL CE database then you are, after all, developing for a phone. And one of phones' most exciting powers isn't their hard drives -- it's their cameras. And it turns out that Mango makes storing camera photos -- or any image data for that matter -- pretty easy. To see how easy, look at this HowTo from Anton Swanevelder, posted a few days ago on his blog. Anton breaks SQL CE image-storage into three steps (the CRU in CRUD), and every step takes less than 20 lines. For example, you can create a column to store image data like this: [Column] public byte[] ItemImage { get { return _ItemImage; } set { if (_ItemImage != value) { _ItemImage = value; NotifyPropertyChanging("ItemImage"); NotifyPropertyChanged("ItemImage"); } } } The other two steps are more interesting (converting a camera stream to a storable byte array, then converting the byte array to a bitmap markup-able in XAML), but no more difficult. Read the full post for the full implementation.
May 22, 2023
by John Esposito
· 10,052 Views · 1 Like
article thumbnail
How Your Application Architecture Has Evolved
This post discusses how application architecture has evolved over the years. From monolithic, service-oriented, to microservices, and event-driven architecture (EDA)
October 11, 2021
by Himanshu Gupta
· 9,987 Views · 2 Likes
article thumbnail
How WebDriverIO Uses Selenium Locators in a Unique Way
Learn how WebDriverIO is transforming the way of Selenium locator strategy and how easy to remember and write it.
February 13, 2020
by Ramit Dhamija
· 11,875 Views · 1 Like
article thumbnail
How to Use RxJava with Android: Managing Async API Calls
We've written about RxJava and Android before, but this tutorial from howrobotswork takes a more in-depth look at RxJava through one particular use case: managing async API calls. If you're not familiar with RxJava, howrobotswork describes it as a "Java implementation of Reactive Extensions developed by Netflix" for asynchronous and event-based programs. The howrobotswork tutorial provides some background and set-up, but mostly focuses on how to build an Android REST API client with RxJava observables. Any Android developers looking to get deeper into RxJava should take a look at the full tutorial. Also, it's the first part in a series, and the second part - error handling with RxJava - has already been posted, potentially with more to come.
May 22, 2023
by Alec Noller
· 17,926 Views · 1 Like
article thumbnail
How To Validate Names Using Java
Gain context of three separate API solutions which can be used to validate name input fields within an application as you follow along with this demonstration.
October 3, 2022
by Brian O'Neill CORE
· 5,935 Views · 4 Likes
article thumbnail
How to Use Yii2 RESTful API Interface With Angular
In this post, we're provided a tutorial that shows how to connect the AngularJS framework with the Yii2 RESTful API. Check it out!
January 26, 2017
by Sergii Grybniak
· 22,604 Views · 2 Likes
article thumbnail
How to Use an npm REST API to Get npm Audit Results
See how to use an npm REST API to get npm audit results.
September 4, 2019
by Gorav Singal CORE
· 16,460 Views · 1 Like
article thumbnail
How to Use AWS Elastic Beanstalk to Reduce Risk of Deployment Downtime
You can use AWS Elastic Beanstalk to create and deploy an updated or upgrated application version with blue-green deployment using cloned configs.
Updated February 3, 2021
by Ray Barlow
· 2,936 Views · 3 Likes
article thumbnail
How to Test for Lock Table Consistency When Deploying High Availability for SAP ERP
In this article, see how to test for lock table consistency and create shared file systems when deploying high availability for SAP ERP.
March 6, 2020
by Harry Aujla
· 12,735 Views · 3 Likes
article thumbnail
How to Test and Benchmark Database Clusters
In this post, we'll look at the best practices for NoSQL database benchmarking and a stress testing tool you can use to fail fast with your database projects.
February 2, 2022
by Peter Corless
· 3,717 Views · 4 Likes
article thumbnail
How To Take A Screenshot Using Python and Selenium
This tutorial will guide you on using Selenium and Python to capture Python Selenium screenshots and check how your website is rendered over different browsers.
January 17, 2023
by Nishant Choudhary
· 3,822 Views · 1 Like
article thumbnail
How to Store Text in PostgreSQL: Tips, Tricks, and Traps
In this article, we will review various options to store long text in the PostgreSQL database: @Lob attributes, TEXT, and long VARCHAR table columns. Also, we'll have a look at the difference between Hibernate 5 and 6 in storing long text data.
July 7, 2022
by Andrey Belyaev CORE
· 10,528 Views · 6 Likes
  • Previous
  • ...
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • ...
  • Next

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com

Let's be friends: