Tag: টেবিল

EmployeeCreation.java: Make a simple “employees” table using the database utilities

package cwp; import java.sql.*; /** Make a simple “employees” table using DatabaseUtilities.  */ public class EmployeeCreation {   public static Connection createEmployees(String driver,                                            String url,                                            String username,                                            String password,                                            boolean close) {     String format =       “(id int, firstname varchar(32), lastname varchar(32), ” +       “language varchar(16), salary float)”;     …

Continue reading

EmployeeTest2.java: A test case for the database utilities. Prints results formatted as an HTML table.

package cwp; import java.sql.*; /** Connect to Oracle or Sybase and print “employees” table  *  as an HTML table.  *    */ public class EmployeeTest2 {   public static void main(String[] args) {     if (args.length < 5) {       printUsage();       return;     }     String vendorName = args[4];     int vendor = DriverUtilities.getVendor(vendorName); …

Continue reading

FruitCreation.java: Creates a simple table named fruits in either an Oracle or a Sybase database.

FruitCreation.java Creates a simple table named fruits in either an Oracle or a Sybase database. package cwp; import java.sql.*; /** Creates a simple table named “fruits” in either  *  an Oracle or a Sybase database.  *    */ public class FruitCreation {   public static void main(String[] args) {     if (args.length < 5) { …

Continue reading

FruitTest.java: A class that connects to either an Oracle or a Sybase database and prints out the values of predetermined columns in the “fruits” table.

# FruitTest.java  A class that connects to either an Oracle or a Sybase database and prints out the values of predetermined columns in the “fruits” table. package cwp; import java.sql.*; /** A JDBC example that connects to either an Oracle or  *  a Sybase database and prints out the values of  *  predetermined columns in …

Continue reading

এইচটিএমএল লেআউট (HTML Layout)

Md. Mursedul Islam Sumon Web Designer   এইচটিএমএল লেআউট (HTML Layouts) বিভিন্ন ওয়েবসাইটে অনেক সময়ই লক্ষ্য করা যায় যে লিখাগুলো কয়েকটি কলামে বিভক্ত করা থাকে। যেমন, ম্যাগাজিন, নিউজপেপার ইত্যাদি। HTML এ <div> tag এর ব্যবহার করে layout design বা কলামে বিভক্ত করা যায়। div element ব্যবহার করে প্রায় layout করা হয়, কারন div ব্যবহার করলে …

Continue reading

এইচটিএমএল টেবিল (HTML Table)

HTML Table মো: আশিকুজ্জামান আশিক রাজশাহী বিশ্ববিদ্যালয়।   HTML টেবিল ব্যবহার করে আমরা কোন web পেজে বিভিন্ন ধরনের পরিসংখ্যানমূলক ডেটা পাঠকের নিকট আকর্ষণীয় ভাবে উপস্থাপন করতে পারবো। HTML টেবিলের উদাহরন এই পর্যায়ে আমরা একটি HTML টেবিলের উদাহরন দেখব: সিরিয়াল নাম্বার নামের প্রথম অংশ নামের শেষ অংশ নাম্বার ১. আল আমিন ৯০ ২. মেহেদি হাসান ৮৫ …

Continue reading

পিএইচপি : মাইএসকিউএল টেবিল তৈরি (PHP Create MySQL Tables)

একটি ডাটাবেস টেবিল এর নিজস্ব নাম থাকে এবং এটা কলাম ও সারি নিয়ে গঠিত হয়। MySQLi এবং PDO ব্যবহার করে একটি মাইএসকিউএল ছক (table) তৈরি করা মাইএসকিউএল এ টেবিল তৈরি করতে CREATE TABLE স্টেটমেন্ট ব্যাবহার করা হয়। আমরা এখন “MyGuests” নামে একটি টেবিল তৈরি করবো যার “id”, “firstname”, “lastname”, “email” এবং “reg_date” নামে পাঁচটি কলাম …

Continue reading

পিএইচপি – টেবিলে শেষ প্রবেশকৃত রেকর্ড এর আইডি বের করা (PHP Get ID of Last Inserted Record in Bangla)

auto-increment ফাংশন এর মাধ্যমে যদি আমরা টেবিলে কোন ডাটা যোগ বা পরিবর্তন করে থাকি তাহলে এর ID এর নাম্বারটি আমরা অতি দ্রুতই পেতে পারি। Phpmyadmin এ গিয়ে “MyGuests” নামের একটি ডাটাবেস টেবিল তৈরি করি । এখানে আইডি কলাম হচ্ছে AUTO_INCREMENT ফিল্ড: CREATE TABLE MyGuests ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, firstname VARCHAR(30) NOT NULL, …

Continue reading

বুটস্ট্র্যাপ টেবিল (Bootstrap Tables)

Bootstrap বেসিক টেবিল সাধারণত Bootstrap বেসিক টেবিলে light padding বা সামান্য প্যাডিং ও horizontal বা আনুভূমিক divider থাকে। এক্ষেত্রে divider বলতে Row এর bottom-border কে বোঝানো হয়েছে। .table class ব্যবহার করে টেবিলের basic styling করা হয়। যেমন: কোড : <div class=”container”>   <h2>Basic Table</h2>   <p>The .table class adds basic styling (light padding and only …

Continue reading

লেকচার ৪৫: মাইক্রোসফট ওয়ার্ড 2010 – টেবিল এ এক্সেল এর ডায়নামিক ডেটা ব্যবহার (Word 2010 – Dynamic Data using Excel in Table)