Java DatabaseMetaData getDriverMajorVersion Method with Example

Rishi Raj
Updated on 30-Jul-2019 22:30:26

271 Views

The getDriverMajorVersion() method of the DatabaseMetaData interface returns the major version of the JDBC driver used.To get the major version of the JDBC driver used to connect with the database −Make sure your database is up and running.Register the driver using the registerDriver() method of the DriverManager class. Pass an object of the driver class corresponding to the underlying database.Get the connection object using the getConnection() method of the DriverManager class. Pass the URL the database and, user name, password of a user in the database, as String variables.Get the DatabaseMetaData object with respect to the current connection using the ... Read More

Get the Sum of a Column in All MySQL Rows

Smita Kapse
Updated on 30-Jul-2019 22:30:26

240 Views

Use aggregate function SUM() to get the sum of a column in al rows. Let us first create a table −mysql> create table DemoTable    (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Amount int    ); Query OK, 0 rows affected (0.20 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(Amount) values(50); Query OK, 1 row affected (0.07 sec) mysql> insert into DemoTable(Amount) values(60); Query OK, 1 row affected (0.04 sec) mysql> insert into DemoTable(Amount) values(70); Query OK, 1 row affected (0.10 sec)Display all records from the table using select statement −mysql> ... Read More

Limit Values in Number JSpinner Component with Java

Chandu yadav
Updated on 30-Jul-2019 22:30:26

2K+ Views

To limit the values in a number JSpinner component, use the SpinnerNumberModel that allows to set the min, max, step size and even the initial value −value − current value of the model min − first number in the sequence max − last number in the sequence stepSize − difference between elements of the sequenceLet us set the above values −int min = 0; int max = 10; int step = 1; int i = 1; SpinnerModel value = new SpinnerNumberModel(i, min, max, step);Now, we will set these values to our JSpinner −JSpinner spinner = new JSpinner(value);The following is an ... Read More

Disable Action Bar Permanently in Android

Ankith Reddy
Updated on 30-Jul-2019 22:30:26

589 Views

This example demonstrate about How to disable action bar permanently in Android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.java     Step 3 − Add the following code to src/MainActivity.javapackage app.tutorialspoint.com.sample ; import android.os.Bundle ; import android.support.v7.app.AppCompatActivity ; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate (Bundle savedInstanceState) {       super .onCreate(savedInstanceState) ;       setContentView(R.layout. activity_main ) ;    } }Step 4 − Add the ... Read More

Update a Single List Item of a MongoDB Document

Nishtha Thakur
Updated on 30-Jul-2019 22:30:26

218 Views

To update a single list item, use positional operator($). Let us first create a collection with documents −> db.updateASingleListDemo.insertOne({ _id:1, "EmployeeName":"Chris", "EmployeeDetails": [ {"EmployeeId":"EMP-101", "EmployeeSalary": 18999 }] }); { "acknowledged" : true, "insertedId" : 1 }Following is the query to display all documents from a collection with the help of find() method −> db.updateASingleListDemo.find().pretty();This will produce the following output −{    "_id" : 1,    "EmployeeName" : "Chris",    "EmployeeDetails" : [       {          "EmployeeId" : "EMP-101",          "EmployeeSalary" : 18999       }    ] }Following is the query ... Read More

Add NOT NULL Constraint to an Existing MySQL Column

Sharon Christine
Updated on 30-Jul-2019 22:30:26

310 Views

Achieve this using ALTER TABLE. Let us first create a table −mysql> create table DemoTable    -> (    -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> StudentName varchar(100)    -> ); Query OK, 0 rows affected (0.86 sec)Let us check the description of the table −mysql> desc DemoTable;This will produce the following output −+-------------+--------------+------+-----+---------+----------------+ | Field       | Type         | Null | Key | Default | Extra          | +-------------+--------------+------+-----+---------+----------------+ | StudentId   | int(11)      | NO   | PRI | NULL    | auto_increment | ... Read More

HTML DOM Input Week Object

AmitDiwan
Updated on 30-Jul-2019 22:30:26

144 Views

The HTML DOM Input Week Object represents an input HTML element with type week.SyntaxFollowing is the syntax −Creating an with type Weekvar weekObject = document.createElement(“INPUT”); weekObject.type = “week”;AttributesHere, “weekObject” can have the following attributes −AttributesDescriptionautocompleteIt defines the value of autocomplete attribute of a week fieldautofocusIt defines if the week field should be focused on initial page load.defaultValueIt sets/returns the default value of week fielddisabledIt defines if week field is disabled/enabledformIt returns a reference of enclosing form that contains the week fieldmaxIt returns/sets the value of max attribute of week fieldminIt returns/sets the value of min attribute of week fieldnameIt ... Read More

Write Your Own memcpy in C

karthikeya Boyini
Updated on 30-Jul-2019 22:30:26

4K+ Views

Here we will see how to implement memcpy() function in C. The memcpy() function is used to copy a block of data from one location to another. The syntax of the memcpy() is like below −void * memcpy(void * dest, const void * srd, size_t num);To make our own memcpy, we have to typecast the given address to char*, then copy data from source to destination byte by byte. Just go through the following code to get better idea.Example#include #include void custom_memcpy(void *dest, void *src, size_t n) {    int i;    //cast src and dest to char*    char ... Read More

Set Value in JTable Cell with Java

George John
Updated on 30-Jul-2019 22:30:26

1K+ Views

Let’s say initially our table is the following with a specific cell [2, 1] with value “Kane” −The following is an example to set a new value to the above table. Here, we will update the cell [2, 1] −table.setValueAt("Guptill", 2, 1);Let us see the complete example −Examplepackage my; import java.awt.Color; import javax.swing.BorderFactory; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.ListSelectionModel; import javax.swing.border.TitledBorder; public class SwingDemo {    public static void main(String[] args) {       JFrame frame = new JFrame();       JPanel panel = new JPanel();       panel.setBorder(BorderFactory.createTitledBorder(       BorderFactory.createEtchedBorder(), ... Read More

Final Class and Final Method in PHP

Alok Prasad
Updated on 30-Jul-2019 22:30:26

2K+ Views

The final keyword is introduced by PHP5 related to the object-oriented programming concept.But before we move on to the final, we need to ensure that we have a good understanding of the inheritance concept. In inheritance, we can inherit a class from another class. Also, we can override a function in an inherited class, to replace the behavior originally provided. In some cases, we might need to keep a class from being inherited from or we may need to prevent a function to be overridden. This can be achieved with the final, by prefixing the class and function with the ... Read More

Advertisements